期望在SAS中使用算术运算符?

时间:2019-01-03 01:33:59

标签: sas

我收到以下错误: enter image description here 我不明白我的错误,请帮忙。

1 个答案:

答案 0 :(得分:3)

您需要在do和_i_(索引变量)之间留出空间,如下所示。因为你有do_i_。您的警告也为您提供了线索。

 data RV2;
  retain _seed_ 0;
 n=20;
 p=0.6;
 do _i_ = 1 to 100;
 binorm1= ranbin(_seed_,n, p);
output;
  end;
  drop _seed_ _i_;
run;