data work.totalsales;
set work.monthlysales(keep = year product sales);
retain monthsales {12};
array monthsales {12};
do i = 1 to 12;
monthsales{i} = sales;
end;
count + 1;
monthsales{count} = sales;
run;
我提交這些代碼。但它似乎有語法問題。但是哪裏?這些sas代碼中的語法錯誤是什麼
你想完成什麼?你的代碼還不清楚。 – DomPazz
其實它來自我在書中看到的多項選擇問題。答案是「由於語法錯誤,程序無法執行」。我只是不明白爲什麼。 – zhuoer