to measure the internal consistency and reliability of a questionnaire or survey
* 측정한 설문이 개인별 일관성 있게 측정되었는지 검사
H0
1. 각 항목은 동일한 주제를 측정하는 것이다.
2. 각 항목의 중요도는 모두 동일하다.
Packages
- install.packages("psy")
-> library(psy)
-> cronbach(data)
or
- install.packages("psych")
-> library(psych)
-> a <- alpha(data)
-> a$total
*이 때의 raw_alpha가 Cronbach's alpha를 의미 함.
or
- install.packages("ltm")
library(ltm)
cronbach.alpha(data, Cl=True)
##Cl=True means to show 95% confidence interval
'Statistics' 카테고리의 다른 글
R on VScode - 1 (0) | 2023.06.01 |
---|