SAS丢弃条件输出 - 在输出中观察到的变量不足

时间:2016-01-01 01:22:04

标签: sas sampling waterfall

我正在学习SAS中的drop_conditions。我要求对三个变量进行采样,但是只检索了两个观察结果。请指教!谢谢!

data temp;
set mydata.ames_housing_data;
format drop condition $30.;
if (LotArea in (7000:9000)) then drop_condition = '01: Between 7000-9000 sqft';
else if (LotShape EQ 'IR3') then drop_condition = '02: Irregular Shape of Property';
else if (condition1 in 'Artery' OR 'Feedr') then drop_condition = '03: Proximity to arterial/feeder ST';

run;

proc freq data=temp;
tables drop_condition;
title 'Sample Waterfall';
run; quit;

OUTPUT

1 个答案:

答案 0 :(得分:1)

您的条件/比较没有正确指定,我认为您正在寻找IN运营商在一行中进行多重比较。我很惊讶您的日志中没有错误。

而不是以下内容:

if (LotArea = 7000:9000)

尝试:

if (lotArea in (7000:9000))

if (condition1 EQ 'Atrery' OR 'Feedr')

应该是

if (condition1 in ('Atrery', 'Feedr'))

编辑: 您还需要为drop_condition变量指定长度,而不是格式,以确保变量足够长以容纳指定的文本。使用针对指定条件的proc freq验证您的答案也很有用,例如:

proc freq data=temp;
where drop_condition=:'01';
tables drop_condition*lot_area;
run;