https://github.com/cran/coin
Raw File
Tip revision: 6b9cee07bdce93e338e4b25e3c60aa19abbbc50e authored by Torsten Hothorn on 31 March 2009, 00:00:00 UTC
version 1.0-3
Tip revision: 6b9cee0
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