I was curious if anyone knew of a work around for SGPLOT to display when the axis isn't appropriate (i.e. there are values outside of the range specified for an axis). I know GPLOT will throw up a note in the log, which makes it easy to track down the issue, but for SGPLOT I haven't found anything similar. For example, data test; do z=1 to 15; y=z; x=z; output; end; run; proc sgplot data=test; series x=x y=y; yaxis min=3 max=8; run; axis2 order=(3 to 8 by 1); proc gplot data=test; plot x*y/vaxis=axis2; run;
... View more