コード例:
(pc.cr <- princomp(USArrests))
summary(pc.cr)
loadings(pc.cr) ## note that blank entries are small but not zero
それぞれから異なる出力を取得していますが、違いが何であるかを理解できません。
出力は次のとおりです。
> summary(pc.cr)
Importance of components:
Comp.1 Comp.2 Comp.3 Comp.4
Standard deviation 82.8908472 14.06956001 6.424204055 2.4578367034
Proportion of Variance 0.9655342 0.02781734 0.005799535 0.0008489079
Cumulative Proportion 0.9655342 0.99335156 0.999151092 1.0000000000
> loadings(pc.cr) ## note that blank entries are small but not zero
...
Comp.1 Comp.2 Comp.3 Comp.4
SS loadings 1.00 1.00 1.00 1.00
Proportion Var 0.25 0.25 0.25 0.25
Cumulative Var 0.25 0.50 0.75 1.00
PS:summary(pc.cr)によって作成されたテーブルにアクセスするにはどうすればよいですか?(strでそれを見つけることができないようです。)
2番目の質問については、固有ベクトルまたはコンポーネントの負荷の概要を意味しますか?
—
2010
こんにちはchl-「summary(pc.cr)」からの出力を意味します-何らかの理由で、それを見つけることができません。(summary(pc.cr)[[1]]のようなものを実行すると、テーブルの一部のみが取得されます)
—
Tal Galili
なぜ
—
アメーバは、モニカ
# inappropriate
最初の行にコメントがあるのですか?
@amoeba-正直、覚えていません。削除しました。:)
—
Tal Galili