我错误地将“你的性别”问题作为Qualtrics中的多项选择而不是“选择一项”。
我将数据导出到SPSS,这使我无法进行相关等 是否有一种简单的方法可以将答案放回到一个变量中,其中1 =男性2 =女性3 =其他?
而不是3个不同的变量 1名男 1女 1其他
答案 0 :(得分:1)
说你的变量是male
,female
,other
,你可以使用它:
if male=1 sex=1.
if female=1 sex=2.
if other=1 sex=3.
value labels sex
1 'male'
2 'female'
3 'other'.
现在,如果受访者选择了多个可能的答案,您必须决定会发生什么。最简单的解决方案可能是:
if sum(male, female, other)>1 sex=$sysmis.
另一方面,如果你想尽可能少地丢失数据,你可以这样做:
if male=1 and other=1 sex=1.
if female=1 and other=1 sex=2.
if male=1 and female=1 sex=$sysmis.