rrcov.control {robustbase} | R Documentation |
Auxiliary function for passing the estimation options as parameters to the estimation functions.
NOTE: The name WILL change !!!!
rrcov.control(alpha = 1/2, nsamp = 500, nmini = 300, seed = NULL, tolSolve = 1e-14, trace = FALSE, use.correction = TRUE, adjust = FALSE)
alpha |
This parameter controls the size of the subsets over
which the determinant is minimized, i.e., |
nsamp |
number of subsets used for initial estimates or |
nmini |
for |
seed |
initial seed for R's random number generator; see
|
tolSolve |
numeric tolerance to be used for inversion
( |
trace |
whether to print intermediate results. Default is
|
use.correction |
whether to use finite sample correction factors.
Defaults to |
adjust |
whether to perform intercept adjustment at each
step. Because this can be quite time consuming, the default is
|
For details about the estimation options see the corresponding estimation functions.
A list with components, as the parameters passed by the invocation
Valentin Todorov
data(Animals, package = "MASS") brain <- Animals[c(1:24, 26:25, 27:28),] data(hbk) hbk.x <- data.matrix(hbk[, 1:3]) ctrl <- rrcov.control(alpha=0.75, trace=TRUE) covMcd(hbk.x, control = ctrl) covMcd(log(brain), control = ctrl)