我一直在努力绘制一个简单的理论指数分布,β值为15。
尝试了以下,有很多种变化:
data exponential;
do x = 0 to 100 by 5;
density = cdf('exponential',x< ,15>
output exponential;
end;
run;
我遵循以下链接中的建议以及各种帮助文档
然而,不知何故,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.
有人请告诉我我做错了什么吗?
答案 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) ;