當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。