BookmarkSubscribeRSS Feed
hulllc
Calcite | Level 5
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?
4 REPLIES 4
GraphGuy
Meteorite | Level 14
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;

symbol1 value=dot interpol=join;
proc gplot data=mydata;
plot y*x=1 / skipmiss;
run;
DanH_sas
SAS Super FREQ
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.

Thanks!
Dan
DanH_sas
SAS Super FREQ
One correction: when I said LINECHART statements, I meant the VLINE ahd HLINE statements (which are linecharts :-))

Thanks!
Dan
hulllc
Calcite | Level 5
Thank you very much, works like a charm.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1401 views
  • 0 likes
  • 3 in conversation