
Last chance! 50% off unlimited learning
Sale ends in
Calculate reliability values of factors by coefficient omega
reliability(object, return.total = FALSE, dropSingle = TRUE,
omit.imps = c("no.conv", "no.se"))
logical
indicating whether to return a final
column containing the reliability of a composite of all items. Ignored
in 1-factor models, and should only be set TRUE
if all factors
represent scale dimensions that could nonetheless be collapsed to a
single scale composite (scale sum or scale mean).
logical
indicating whether to exclude factors
defined by a single indicator from the returned results. If TRUE
(default), single indicators will still be included in the total
column when return.total = TRUE
.
character
vector specifying criteria for omitting
imputations from pooled results. Can include any of
c("no.conv", "no.se", "no.npd")
, the first 2 of which are the
default setting, which excludes any imputations that did not
converge or for which standard errors could not be computed. The
last option ("no.npd"
) would exclude any imputations which
yielded a nonpositive definite covariance matrix for observed or
latent variables, which would include any "improper solutions" such
as Heywood cases. NPD solutions are not excluded by default because
they are likely to occur due to sampling error, especially in small
samples. However, gross model misspecification could also cause
NPD solutions, users can compare pooled results with and without
this setting as a sensitivity analysis to see whether some
imputations warrant further investigation.
Reliability values (coefficient alpha, coefficients omega, average
variance extracted) of each factor in each group. If there are multiple
factors, a total
column can optionally be included.
The coefficient alpha (Cronbach, 1951) can be calculated by
where
The coefficient omega (Bollen, 1980; see also Raykov, 2001) can be calculated by
where
The second coefficient omega (Bentler, 1972, 2009) can be calculated by
where
The third coefficient omega (McDonald, 1999), which is sometimes referred to hierarchical omega, can be calculated by
where lavInspect(object, "cov.lv")
.
In conclusion,
The average variance extracted (AVE) can be calculated by
Note that this formula is modified from Fornell & Larcker (1981) in the case that factor variances are not 1. The proposed formula from Fornell & Larcker (1981) assumes that the factor variances are 1. Note that AVE will not be provided for factors consisting of items with dual loadings. AVE is the property of items but not the property of factors.
Regarding categorical indicators, coefficient alpha and AVE are calculated
based on polychoric correlations. The coefficient alpha from this function
differs from the standard alpha calculation, which does not assume items are
continuous, so numerically weighted categories can be treated as numeric.
Researchers may check the alpha
function in the psych
package
for the standard coefficient alpha calculation.
Item thresholds are not accounted for. Coefficient omega for categorical
items, however, is calculated by accounting for both item covariances and
item thresholds using Green and Yang's (2009, formula 21) approach. Three
types of coefficient omega indicate different methods to calculate item
total variances. The original formula from Green and Yang is equivalent to
reliability
detects both categorical and continuous
indicators in the model, an error is returned. If the categorical indicators
load on a different factor(s) than continuous indicators, then reliability
can be calculated separately for those scales by fitting separate models and
submitting each to the reliability
function.
Bollen, K. A. (1980). Issues in the comparative measurement of political democracy. American Sociological Review, 45(3), 370--390. 10.2307/2095172
Bentler, P. M. (1972). A lower-bound method for the dimension-free measurement of internal consistency. Social Science Research, 1(4), 343--357. 10.1016/0049-089X(72)90082-8
Bentler, P. M. (2009). Alpha, dimension-free, and model-based internal consistency reliability. Psychometrika, 74(1), 137--143. 10.1007/s11336-008-9100-1
Cronbach, L. J. (1951). Coefficient alpha and the internal structure of tests. Psychometrika, 16(3), 297--334. 10.1007/BF02310555
Fornell, C., & Larcker, D. F. (1981). Evaluating structural equation models with unobservable variables and measurement errors. Journal of Marketing Research, 18(1), 39--50. 10.2307/3151312
Green, S. B., & Yang, Y. (2009). Reliability of summed item scores using structural equation modeling: An alternative to coefficient alpha. Psychometrika, 74(1), 155--167. 10.1007/s11336-008-9099-3
McDonald, R. P. (1999). Test theory: A unified treatment. Mahwah, NJ: Erlbaum.
Raykov, T. (2001). Estimation of congeneric scale reliability using covariance structure analysis with nonlinear constraints British Journal of Mathematical and Statistical Psychology, 54(2), 315--323. 10.1348/000711001159582
reliabilityL2
for reliability value of a desired
second-order factor, maximalRelia
for the maximal reliability
of weighted composite
# NOT RUN {
HS.model <- ' visual =~ x1 + x2 + x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9 '
fit <- cfa(HS.model, data = HolzingerSwineford1939)
reliability(fit)
reliability(fit, return.total = TRUE)
# }
Run the code above in your browser using DataLab