https://github.com/cran/coin
Raw File
Tip revision: 7554a8bb9f59e898babb9f676bc6e6e6fe2d58dc authored by Torsten Hothorn on 28 June 2007, 00:00:00 UTC
version 0.6-4
Tip revision: 7554a8b
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