Closed mattansb closed 4 years ago
Shouldn't Omega "not care" about the sign of the loading coefficients?
Only from the point of view that reliability is a proportion of variance. Notice that AVE is unaffected.
Alpha is an average covariance between pairs of items, which is why -1 * x1
turns it negative.
Omega is composite reliability. Would you make a composite by summing negatively and positively scored items? If you did, they would cancel each other out, which omega correctly reflects. Take the simple case of 2 items. The variance of the composite is the sum of the entire covariance matrix, so Var_1 + Var_2 + Cov_12 + Cov_21 (or simply Var_1 + Var_2 + 2Cov_21). When you negatively scored x1
, you effectively imply calculating a composite by subtracting x1 from (x2 + x3), thereby removing a big chunk of common variance from the composite. Another way to think about it is that `-1 x1doesn't measure
visual` skills, but the lack thereof (or opposite), so of course including it in a composite would make it a noisy composite that doesn't reflect visual skills very well. Of course in practice, we always score our items in the same direction (e.g., reversing negatively worded items) before calculating a composite.
You can also compare the omega and AVE formulas (see p. 153) to see why the former changes with direction. Omega sums loadings before squaring, whereas AVE squares loadings before summing. AVE is the average R^2 across items. Omega is also about the proportion of variance, but not of items, rather of the composite, so the direction of loadings (and by implication, of how the items are scored) should by definition impact the interpretation of a composite and its reliability.
Oh, I see - thanks, that clears things up!
Not sure if this is the intended behavior:
Created on 2020-10-05 by the reprex package (v0.3.0)
Shouldn't Omega "not care" about the sign of the loading coefficients?