swh:1:snp:813359ba77493c9d5dd1abad9a1f53490a8abf57
Raw File
Tip revision: 1d5898eadc504ac3a2e15a90c971233f8a4540ac authored by Torsten Hothorn on 17 October 2006, 00:00:00 UTC
version 0.5-0
Tip revision: 1d5898e
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