现在I R t都可以算出来,都是一个数值,请问这种点估计的95%置信区间应该怎么编程?作者: shiyiming 时间: 2010-12-13 22:20 标题: Re: 点估计95%置信区间 [code:3jcx39vz]data _null_;
a =0.05;
i =10;
t =1000;
if (i >0 and t >0) then do;
q =quantile('normal', 1-a/2)/sqrt(i);
lci =(1-q)/t; uci =(1+q)/t;
end;
put lci=uci=;
run;[/code:3jcx39vz]