View source: R/cronbach.alpha.R
cronbach.alpha | R Documentation |
Computes Cronbach's alpha
cronbach.alpha(data)
data |
A data frame or matrix contains n subjects * m raters. |
The Cronbach's alpha (unstandardized)
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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.