Hi,
I have a set of 8 questions of which Q1, 2, 4, 6,7 are negative and Q3,5,8 are positive (attached questionnaire) on a scale of 1 (never) to 5 (very often)
Now I wanted to create a categorical (Yes No) variable for the entire questionnaire and for positive and negative subscales individually.
I used the code *for all negative questions
foreach var in PAQ1 PAQ2 PAQ4 PAQ6 PAQ7 {
replace `var' = 6 - `var'
}
In the next step, I wanted to check the impact of negative and positive responses on the outcome separately also the impact of overall responses.
Is this reverse coding is correct? because after reverse coding, all labels are similar but not values and I am clueless how to create categorical variables combining all responses.
I think I am missing something here although it looks simple
Can someone please explain me how to understand this and generate a categorical variable for combined responses. That would be very helpful
Thank you
I have a set of 8 questions of which Q1, 2, 4, 6,7 are negative and Q3,5,8 are positive (attached questionnaire) on a scale of 1 (never) to 5 (very often)
Now I wanted to create a categorical (Yes No) variable for the entire questionnaire and for positive and negative subscales individually.
I used the code *for all negative questions
foreach var in PAQ1 PAQ2 PAQ4 PAQ6 PAQ7 {
replace `var' = 6 - `var'
}
In the next step, I wanted to check the impact of negative and positive responses on the outcome separately also the impact of overall responses.
Is this reverse coding is correct? because after reverse coding, all labels are similar but not values and I am clueless how to create categorical variables combining all responses.
Q1 | 5 Very often | 4 | 3 | 2 | 1 never |
Q2 | 5 Very often | 4 | 3 | 2 | 1 never |
Q3 | 1 Very often | 2 | 3 | 4 | 5 never |
Q4 | 5 Very often | 4 | 3 | 2 | 1 never |
Q5 | 1 Very often | 2 | 3 | 4 | 5 never |
Q6 | 5 Very often | 4 | 3 | 2 | 1 never |
Q7 | 5 Very often | 4 | 3 | 2 | 1 never |
Q8 | 1 Very often | 2 | 3 | 4 | 5 never |
Can someone please explain me how to understand this and generate a categorical variable for combined responses. That would be very helpful
Thank you
Comment