Hi all,
I have three conditions (1, 2, 3) and for each condition, people answered 30 same questions.
My original data looks like this:
I want to reshape my data to long format, like this:
Is reshape command able to do this and how? Thanks in advance!
Best Regards,
Cecilia
I have three conditions (1, 2, 3) and for each condition, people answered 30 same questions.
My original data looks like this:
id | condition1_01 | condition1_02 | ... | condition2_01 | condition2_02 | ... | condition3_01 | condition3_02 |
1 | ||||||||
2 | ||||||||
3 | ||||||||
4 |
id | condition | Q1 | Q2 | Q3 | ... | Q30 |
1 | 1 | |||||
1 | 2 | |||||
1 | 3 | |||||
2 | 1 |
Best Regards,
Cecilia
Comment