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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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