I use the skipmiss option in gplot to break line graphs where data are missing. I was interested in moving up to gtl, but can find no reference to skipmiss in the gtl or sas/graph documentation. Is skipmiss implmented in gtl or sas/graph 9.2?
I use skipmiss in gplot a lot, but I'm not sure if it's possible in GTL.
Here is a gplot example, in case someone would like to play around
with the data in GTL and try it ...
data mydata;
input x y;
datalines;
1 3
2 4
3 3.5
4 .
5 4
6 5
;
run;
Yes, it is supported in GTL and the SG procedures. The option is BREAK=true on the SERIESPLOT and STEPPLOT statement. In SGPLOT and SGPANEL, the BREAK boolean option is supported on SERIES, STEP and LINECHART statements.