CovNARobust-class | R Documentation |
CovNARobust
is a virtual base class used for deriving the concrete classes
representing different robust estimates of multivariate location and scatter for incomplete data. Here are implemeted the
standard methods common for all robust estimates like show
, summary
and plot
.
The derived classes can override these methods and can define new ones.
A virtual Class: No objects may be created from it.
iter
:number of iterations used to compute the estimates
crit
:value of the criterion function
wt
:weights
call
, cov
, center
,
n.obs
, mah
, method
,
singularity
, X
:from the "Cov-class"
class.
Classes "CovNA"
and "CovRobust-class"
, directly.
signature(x = "CovNARobust")
: plot the object
signature(object = "CovNARobust")
: display additional information for the object
Valentin Todorov valentin.todorov@chello.at
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>.
CovNA
, CovNAMcd
, CovNAOgk
,
CovNASde
, CovNASest
data(hbk)
hbk.x <- data.matrix(hbk[, 1:3])
cv <- CovMest(hbk.x) # it is not possible to create an object of
# class CovRobust, since it is a VIRTUAL class
cv
summary(cv) # summary method for class CovRobust
plot(cv) # plot method for class CovRobust
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.