https://github.com/cran/coin
Raw File
Tip revision: 961f1609689bec271e7757dc55390f1fe45705ca authored by Torsten Hothorn on 19 April 2006, 00:00:00 UTC
version 0.4-7
Tip revision: 961f160
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