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


R Harman74.cor 哈曼示例 7.4


R語言 Harman74.cor 位於 datasets 包(package)。

說明

Holzinger 和 Swineford 對芝加哥郊區的 145 名第七名和 eight-grade 兒童進行了 24 項心理測試的相關矩陣。

用法

Harman74.cor

例子

require(stats)
(Harman74.FA <- factanal(factors = 1, covmat = Harman74.cor))
for(factors in 2:5) print(update(Harman74.FA, factors = factors))
Harman74.FA <- factanal(factors = 5, covmat = Harman74.cor,
                        rotation = "promax")
print(Harman74.FA$loadings, sort = TRUE)

來源

Harman, H. H. (1976) 現代因子分析,第三版修訂版,芝加哥大學出版社,表 7.4。

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Harman Example 7.4。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。