https://github.com/cran/coin
Raw File
Tip revision: 0bbdd83f8d1d7537dda36e896e3390cd68a33eb7 authored by Torsten Hothorn on 21 December 2010, 00:00:00 UTC
version 1.0-18
Tip revision: 0bbdd83
AdditionalClasses.R

### Conditional Expectation and Covariance
setClass(Class = "ExpectCovar",
    representation = representation(
        expectation = "numeric",
        covariance  = "matrix",
        dimension   = "integer"
   )
)

### Expectation and Covariance of the influence function
### (+ sum of weights)
setClass(Class = "ExpectCovarInfluence",
    representation = representation(
        sumweights = "numeric"
    ),
    contains = "ExpectCovar"
)

back to top