https://github.com/cran/coin
Raw File
Tip revision: 92536b57170b2a5f6786aae67aeeb36fb3896d02 authored by Torsten Hothorn on 14 September 2006, 00:00:00 UTC
version 0.4-14
Tip revision: 92536b5
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