如何在SAS中绘制指数分布?

时间:2015-10-09 19:26:39

标签: sas

我一直在努力绘制一个简单的理论指数分布,β值为15。

尝试了以下,有很多种变化:

data exponential;
do x = 0 to 100 by 5;
density = cdf('exponential',x< ,15>
output exponential;
end;
run;

我遵循以下链接中的建议以及各种帮助文档

http://support.sas.com/documentation/cdl/en/lefunctionsref/63354/HTML/default/viewer.htm#n0n7cce4a3gfqkn1vr0p1x0of99s.htm#n0p4ehagihl2zcn10orv1azqbr26

然而,不知何故,SAS刚刚获得了它:

ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string,a numeric constant, a datetime constant, a
missing value, bitstring, INPUT, PUT.         

ERROR 388-185: Expecting an arithmetic operator.  

ERROR 76-322: Syntax error, statement will be ignored.

有人请告诉我我做错了什么吗?

2 个答案:

答案 0 :(得分:2)

data exponential;
   do x = 0 to 100 by 5;
      density = cdf('exponential',x,15);
      output exponential;
      end;
   run;

答案 1 :(得分:1)

不要包含&lt;&gt;手册页用于指定可选参数的符号。

density = cdf('exponential',X,15) ;