CovControlMve {rrcov} | R Documentation |
Constructor function for objects of class "CovControlMve"
Description
This function will create a control object CovControlMve
containing the control parameters for CovMve
Usage
CovControlMve(alpha = 0.5, nsamp = 500, seed = NULL, trace= FALSE)
Arguments
alpha |
numeric parameter controlling the size of the subsets
over which the determinant is minimized, i.e., |
nsamp |
number of subsets used for initial estimates or |
seed |
starting value for random generator. Default is |
trace |
whether to print intermediate results. Default is |
Value
A CovControlMve
object
Author(s)
Valentin Todorov valentin.todorov@chello.at
References
Todorov V & Filzmoser P (2009), An Object Oriented Framework for Robust Multivariate Analysis. Journal of Statistical Software, 32(3), 1–47. doi:10.18637/jss.v032.i03.
Examples
## the following two statements are equivalent
ctrl1 <- new("CovControlMve", alpha=0.75)
ctrl2 <- CovControlMve(alpha=0.75)
data(hbk)
CovMve(hbk, control=ctrl1)