将多个答案更改为一个

Change multiple answer to one

我错误地将“你的性别是什么”问题留在 Qualtrics 中作为多项选择而不是 "pick one"。

我将数据导出到 SPSS,这让我无法进行相关等操作
有没有一种简单的方法可以将给出的答案拟合回一个变量,其中 1=男性 2=女性 3=其他?

而不是 3 个不同的变量
1 男
1 女
1 其他

假设你的变量是 malefemaleother,你可以使用这个:

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.