https://github.com/cran/coin
Raw File
Tip revision: ed9975128c5c442d0732f4b8314379ee3a0ab3c7 authored by Torsten Hothorn on 05 May 2008, 00:00:00 UTC
version 0.6-9
Tip revision: ed99751
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