User Tools

Site Tools


factor_analysis_examples

This is an old revision of the document!


FA e.gs

Personality

d <- read.table("http://commres.net/wiki/_media/r/personality0.txt")

살펴보기 (head)
구조및성질 (str)
상관관계 도식화 (corrplot)

  • require corrplot package
install.packages("corrplot") # if not installed
library(corrplot)
corrplot(cor(d), order = "hclust", tl.col='black', tl.cex=.75)

fa 펑션 factor analysis

library(psych)
d.fa <- fa(d, rotate="none") # fa test with no rotation
names(d.fa) # to see what comes with the output d.fa

check out the output.

d.fa

compare the output to d.fa$communality

d.fa$communality

for better output

data.frame(d.fa$communality)

d.fa 아웃풋처럼 round 처리

round(data.frame(d.fa$communality),3)

check out the uniqueness too

uniqueness check
직접 해 보기

factor_analysis_examples.1574207526.txt.gz · Last modified: 2019/11/20 08:52 by hkimscil

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki