我使用psych
包进行因子分析。我想在fa()
对象中或使用fa.diagram()
绘图时指定潜在因素的标签。
例如,玩具数据:
require(psych)
n <- 100
choices <- 1:5
df <- data.frame(a=sample(choices, replace=TRUE, size=n),
b=sample(choices, replace=TRUE, size=n),
c=sample(choices, replace=TRUE, size=n),
d=sample(choices, replace=TRUE, size=n))
model <- fa(df, nfactors=2, fm="pa", rotate="promax")
model
Factor Analysis using method = pa
Call: fa(r = df, nfactors = 2, rotate = "promax", fm = "pa")
Standardized loadings (pattern matrix) based upon correlation matrix
PA1 PA2 h2 u2 com
a 0.45 -0.49 0.47 0.53 2.0
b 0.22 0.36 0.17 0.83 1.6
c -0.02 0.20 0.04 0.96 1.0
d 0.66 0.07 0.43 0.57 1.0
我想通过更改PA1
对象本身或调整输出中的标签,将PA2
和FactorA
更改为FactorB
和model
fa.diagram()
:
docs for fa.diagram
有一个labels
参数,但没有例子,到目前为止我所做的实验并没有取得丰硕的成果。任何帮助非常感谢!