标签: sas
假设我们要检查变量是否不在数字集{1,2,3}中。你会如何在SAS中做到这一点?这是代码:
data test; if x ^= {1,2,3} then x = NA; run;
答案 0 :(得分:1)
if not (X in (1,2,3)) then call missing(x);
您可以通过其他几种方式实现此目的,但这通常是最常见的。