作者wqewwqew (香草天空)
看板Statistics
標題[程式] 請問 sas 指令 rannor()
時間Tue May 23 15:43:59 2017
各位大大好
小弟是新手,請問 rannor()是什麼意思?
data a (drop=i);
do i=1 to 1000;
x1=rannor(1234);
x2=rannor(1234);
e=rannor(1234);
if i > 900 then y=100 + e;
else y=10 + 5*x1 + 3*x2 + .5 * e;
output;
end;
run;
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 163.13.212.22
※ 文章網址: https://webptt.com/m.aspx?n=bbs/Statistics/M.1495525441.A.35A.html
1F:→ andrew43: 回傳一個標準常態分佈的隨機數。google一大堆不是嗎 05/23 21:17