goptions reset=all;
data l;
do x=-3 to 3 by 0.05;
y=pdf('normal',x);
output;
end;
proc gplot;
plot y*x/haxis=axis1 legend=legend1;
axis1 order=(-3 to 3 by 0.5) minor=(c=blue number=9);
symbol v=dot i=spline color=green;
legend1 frame label=('normal') shape=symbol(.5,.5) value=('line') position=(top right inside) mode=protect;
run;
quit;
这段code在sas9.1中不起作用,在sas9.2起作用了,怎么回事?请朋友们介绍下,谢谢。