CovClassic(rrcov)
CovClassic()所属R语言包:rrcov
Classical Estimates of Multivariate Location and Scatter
多元分布的位置和分散的古典估计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the classical estimates of multivariate location and scatter. Returns an S4 class CovClassic with the estimated center, cov, Mahalanobis distances and weights based on these distances.
计算多元分布的位置和散射的经典估计。返回S4类CovClassic估计center,cov,马氏距离和重量根据这些距离。
用法----------Usage----------
CovClassic(x, unbiased=TRUE)
Cov(x, unbiased=TRUE)
参数----------Arguments----------
参数:x
a matrix or data frame. As usual, rows are observations and columns are variables.
一个矩阵或数据框。像往常一样,行的观察和列变量。
参数:unbiased
whether to return the unbiased estimate of the covariance matrix. Default is unbiased = TRUE
是否返回的协方差矩阵的无偏估计。默认是unbiased = TRUE
值----------Value----------
An object of class "CovClassic".
对象的类"CovClassic"。
(作者)----------Author(s)----------
Valentin Todorov <a href="mailto:valentin.todorov@chello.at">valentin.todorov@chello.at</a>
参考文献----------References----------
An Object Oriented Framework for Robust Multivariate Analysis. Journal of Statistical Software, 32(3), 1–47. URL http://www.jstatsoft.org/v32/i03/.
参见----------See Also----------
Cov-class, CovClassic-class
Cov-class,CovClassic-class
实例----------Examples----------
data(hbk)
hbk.x <- data.matrix(hbk[, 1:3])
cv <- CovClassic(hbk.x)
cv
summary(cv)
plot(cv)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|