|
Hi,
I have a problem using the skipmiss option together with the overlay
option in proc gplot.
I want to plot many data-series in one plot, thatīs why I use the
overlay option.
All of the data rows have many missing values, and sas is connecting
them with a straight line, thatīs why I use the skipmiss option. But
once skipmiss is in use either nothing is displayed in my diagramm or
only one data-row is displayed until the first missing value. All
other data are not ploted then.
proc gplot data =xyz;
plot ( a b c d e f g ) * x
/overlay skipmiss
vaxis=axis1 haxis=axis2
legend=legend1;
run;quit;
I also tried the symbol option interpol=none, but there are aswell no
data ploted.
goptions reset=all;
symbol1 i=j co=blue interpol=none;
Thanks for your help!
Pi
|