screeplot(stats)
screeplot()所属R语言包:stats
Screeplots
screeplots
译者:生物统计家园网 机器人LoveR
描述----------Description----------
screeplot.default plots the variances against the number of the principal component. This is also the plot method for classes "princomp" and "prcomp".
screeplot.default图打击的主要组成部分的数量差异。这也是plot类"princomp"和"prcomp"方法。
用法----------Usage----------
## Default S3 method:[默认方法]
screeplot(x, npcs = min(10, length(x$sdev)),
type = c("barplot", "lines"),
main = deparse(substitute(x)), ...)
参数----------Arguments----------
参数:x
an object containing a sdev component, such as that returned by princomp() and prcomp().
包含sdev组件,如princomp()和prcomp()返回的对象。
参数:npcs
the number of components to be plotted.
要绘制的元件数量。
参数:type
the type of plot.
图类型。
参数:main, ...
graphics parameters.
图形参数。
参考文献----------References----------
Multivariate Analysis, London: Academic Press.
Modern Applied Statistics with S, Springer-Verlag.
参见----------See Also----------
princomp and prcomp.
princomp和prcomp。
举例----------Examples----------
require(graphics)
## The variances of the variables in the[#在变量的方差]
## USArrests data vary by orders of magnitude, so scaling is appropriate[#USArrests数据不同量级,所以适当的比例是]
(pc.cr <- princomp(USArrests, cor = TRUE)) # inappropriate[不当]
screeplot(pc.cr)
fit <- princomp(covmat=Harman74.cor)
screeplot(fit)
screeplot(fit, npcs=24, type="lines")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|