我有一个常规变量说A
,其中有标签'绝对是'是'是','中立','不,','绝对没有'。我想只选择为变量yes
赋值A
的数据。然后我想只使用这些数据并比较一些有序变量。
那么如何才能仅为变量yes
A
的数据
答案 0 :(得分:0)
这样的事情可以解决问题:
USE ALL. *removes any filters you have in place.
COMPUTE filter_$=(A = 'yes'). *creates a filter variable.
VARIABLE LABELS filter_$ "A = 'yes' (FILTER)". *labels it.
VALUE LABELS filter_$ 0 'Not Selected' 1 'Selected'. *labels the values.
FORMATS filter_$ (f1.0). *formats the filter variable.
FILTER BY filter_$. *this is the uses the filter variable you just created.
EXECUTE.
您也可以在数据 - >下点击您的答案。选择案例。选择“如果条件满足”按钮并从那里进行选择。