ERROR: The parameter value 0 is not within the required range of 1 and 200. Using default min width of 1;
程序是:
ods rtf file="&root.output\graphs\f-12.rtf" style=&graphstyle. nogtitle nogfootnote;
proc sgplot data=_forest4 noautolegend;
scatter y=study2value x=average / markerattrs=graphdata2(symbol=diamondfilled size=10);
scatter y=studyvalue x=average / xerrorupper=max2 xerrorlower=min2 markerattrs=graphdata1(symbol=squarefilled size=3);
vector x=x2 y=studyvalue / xorigin=x1 yorigin=studyvalue lineattrs=graphdata1(thickness=8) noarrowheads;
scatter y=studyvalue x=avg / markerchar=means2 x2axis;
scatter y=studyvalue x=_min / markerchar=min x2axis;
scatter y=studyvalue x=_max / markerchar=max x2axis;
xaxis type=linear offsetmin=0.01 offsetmax=0.35 min=0 max=70 minor display=(nolabel) ;
x2axis offsetmin=0.7 offsetmax=0.03 display=(noticks nolabel);
yaxis display=(noticks nolabel) offsetmin=0.071 offsetmax=0.035 values=(1 to &count by 1);
run;
很纳闷,有大神可以解答吗?