标题: 请教:sasbase123题中一题不懂 [打印本页] 作者: shiyiming 时间: 2013-9-6 16:02 标题: 请教:sasbase123题中一题不懂 data set named month has one observation per month for each of five years for a total of 60 observation.
code:
data total;
set month;
retain month{12};
array month{12};
do i = 1 to 12;
month{i} = sales;
end;
cnt + 1 ;
month{cnt} = sales;
run;