Performs Cronbach's alpha of specified items from a data frame.
Cronbach's Alpha is a formula for estimating the internal consistency
reliability of a measurement instrument such as survey items (see Allen & Yang, 1979; Kline, 1999).
Survey items can have 2 or more categories such as 5-point scales and contain 2 or more items.
Usage
alpha(items, data)
Value
A list object with Cronbach's alpha summary statistics.
Arguments
items
Vector of item names that form a scale (e.g., 5-point Likert scales)
data
Data frame object.
References
Allen, M. J., & Yen, W. M. (1979). Introduction to Measurement Theory.
Brooks/Cole. ISBN: 0-8185-0283-5.
Kline, Paul (1999). Handbook of Psychological Testing (2nd ed).
Routledge, New York. ISBN: 9780415211581.
alpha(items=c("i1","i2","i3","i4","i5"), data=cas)
# remove i1 as suggested in the previous example, returns higher alphaalpha(items=c("i2","i3","i4","i5"), data=cas)