Dear Statalist,
I am interested in use the information of four variables into just a single variable, for which I am considering using the alpha command. However, it is not clear to me what am I doing. I mean, these four variables are all of them dummies (if a firm cooperate with certain type of other firms), my point is that when I do the alpha command, the new variable created have more than two categories, look:
How can I interpret this variable? I mean, if my previous information was like "have you cooperated with this kind of firms (yes/no)" I do not see how to translate this information to the new variable (with the new values created -> more than two categories). I mean, if I put this into a regression and the parameter is lets say positive, I do not know how to interpret it.
And second, could I construct the new variable as a dummy
and then say that this variable has a good internal consistency due to the fact that the Cronbach alpha of the variables used is above 0.7? Even though I constructed not using the command?
Many thanks in advanced.
I am interested in use the information of four variables into just a single variable, for which I am considering using the alpha command. However, it is not clear to me what am I doing. I mean, these four variables are all of them dummies (if a firm cooperate with certain type of other firms), my point is that when I do the alpha command, the new variable created have more than two categories, look:
Code:
. alpha x1 x2 x3 x4, generate(z) Test scale = mean(unstandardized items) Average interitem covariance: .0508965 Number of items in the scale: 4 Scale reliability coefficient: 0.7283 . tab z mean(unstan | dardized | items) | Freq. Percent Cum. ------------+----------------------------------- 0 | 19,716 68.15 68.15 .25 | 3,453 11.94 80.08 .5 | 2,940 10.16 90.25 .75 | 2,355 8.14 98.39 1 | 467 1.61 100.00 ------------+----------------------------------- Total | 28,931 100.00 . sum x1 x2 x3 x4 Variable | Obs Mean Std. Dev. Min Max -------------+--------------------------------------------------------- x1 | 28,931 .1732398 .378461 0 1 x2 | 28,931 .0265459 .1607549 0 1 x3 | 28,931 .2067678 .4049945 0 1 x4 | 28,931 .2248108 .4174649 0 1
And second, could I construct the new variable as a dummy
Code:
gen z = 0 replace z = 1 if (x1>0 | x2>0 | x3>0 | x4>0)
Many thanks in advanced.
Comment