powered by
Computes Cronbach's alpha
cronbach.alpha(data)
The Cronbach's alpha (unstandardized)
A data frame or matrix contains n subjects * m raters.
library(DTSEA) library(tibble) # Load the data data <- tribble(~x, ~y, ~z, 1, 1, 2, 5, 6, 5, 7, 8, 4, 2, 3, 2, 8, 6, 5) # Run Cronbach's alpha cat(cronbach.alpha(data))
Run the code above in your browser using DataLab