Hello,
I'm trying to combine 3 variables (2: numeric, 1: string) into one variable, and I'd appreciate if you help me how to do it.
A particular multiple-choice questionnaire I'm dealing with is "Circle all that apply." Interviewers could circle more than one answers from participants. There is no first and second choice because interviewers marked their answers based on what they said. So I'd like to consider all answers independently when the participants picked two answers. For example,
From this table, the total number of IDs (participants) is 5, but the total number of answers is 9. I'd want to make the new variable that has 9 rows.
Thank you!
I'm trying to combine 3 variables (2: numeric, 1: string) into one variable, and I'd appreciate if you help me how to do it.
A particular multiple-choice questionnaire I'm dealing with is "Circle all that apply." Interviewers could circle more than one answers from participants. There is no first and second choice because interviewers marked their answers based on what they said. So I'd like to consider all answers independently when the participants picked two answers. For example,
ID | Answer1 | Answer2 | Answer3 | Other (explain) |
1 | 1 | 2 | . | . |
2 | 3 | . | . | explained in English |
3 | 3 | . | . | . |
4 | 2 | 3 | . | . |
5 | 3 | . | . | explained in English |
From this table, the total number of IDs (participants) is 5, but the total number of answers is 9. I'd want to make the new variable that has 9 rows.
Thank you!
Comment