https://github.com/cran/coin
Revision bcf45eb0da948c436ef49efde3442eb362097ec0 authored by Torsten Hothorn on 23 August 2010, 00:00:00 UTC, committed by Gabor Csardi on 23 August 2010, 00:00:00 UTC
1 parent 9be14d8
Raw File
Tip revision: bcf45eb0da948c436ef49efde3442eb362097ec0 authored by Torsten Hothorn on 23 August 2010, 00:00:00 UTC
version 1.0-16
Tip revision: bcf45eb
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