当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R screeplot 屏幕图


R语言 screeplot 位于 stats 包(package)。

说明

screeplot.default 绘制方差与主成分数量的关系。这也是类 "princomp""prcomp"plot 方法。

用法

screeplot(x, ...)
## Default S3 method:
screeplot(x, npcs = min(10, length(x$sdev)),
          type = c("barplot", "lines"),
          main = deparse1(substitute(x)), ...)

参数

x

包含 sdev 组件的对象,例如 princomp()prcomp() 返回的对象。

npcs

要绘制的组件数量。

type

情节的类型。可以缩写。

main , ...

图形参数。

例子

require(graphics)

## The variances of the variables in the
## USArrests data vary by orders of magnitude, so scaling is appropriate
(pc.cr <- princomp(USArrests, cor = TRUE))  # inappropriate
screeplot(pc.cr)

fit <- princomp(covmat = Harman74.cor)
screeplot(fit)
screeplot(fit, npcs = 24, type = "lines")

参考

Mardia, K. V., J. T. Kent and J. M. Bibby (1979). Multivariate Analysis, London: Academic Press.

Venables, W. N. and B. D. Ripley (2002). Modern Applied Statistics with S, Springer-Verlag.

也可以看看

princompprcomp

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Screeplots。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。