My data is from questionnaire and I need to do a lo of -label define- & -label values-
I would like to ask for advise on how to do this more efficiently.
For example, I have made the following
Now I want to collapse 1, 2 into one, and 4, 5 into another one, to make a total of 3 categories for variables using this scale.
I have been using -gen- and -replace- to combine, but found it very inefficient.
Please advise. Thanks!
I would like to ask for advise on how to do this more efficiently.
For example, I have made the following
Code:
label define likert_agree /// 1 "Strongly disagree" 2 "Somewhat disagree" /// 3 "Neutral" 4 "Somewhat agree" /// 5 "Strongly agree"
I have been using -gen- and -replace- to combine, but found it very inefficient.
Please advise. Thanks!
Comment