https://github.com/cran/coin
Raw File
Tip revision: 9be14d810ee14fc703517a2f05210bd4fdc8a716 authored by Torsten Hothorn on 10 August 2010, 00:00:00 UTC
version 1.0-14
Tip revision: 9be14d8
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