BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
stan
Quartz | Level 8

Hi folks,

I can't understand the behaviour of SAS PROC TEMPLATE in the following situation.

When I use the following data set:

ExpID;AA;BB;CC;DD;EE

1;5;25;9;65;14

the output as in the 1.jpg file.

But when I have missing values:

ExpID;AA;BB;CC;DD;EE

1;5;25; ;65;14

there is no relevant break in the curve (2.jpg).

How to do this like in the 3.jpg file?

To produce the lines I use the following code:

SERIESPLOT

X = ...

Y = ... / ... LINEATTRS = (PATTERN = SOLID COLOR = BLACK);

Thank you.


2.jpg3.jpg1.jpg
1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
Diamond | Level 26

Hi:

  With the SGPLOT procedure, the option is BREAK:

proc sgplot data=whatever;

  series x=xvar y=yvar / break markers datalabel;

run;

So, I suspect that with PROC TEMPLATE, it will be a BREAK option on the SERIESPLOT statement. And, indeed, if you check the documentation, since the options are listed in alpha order, you will find what you need in the doc:

SAS(R) 9.4 Graph Template Language: Reference, Second Edition

cynthia

View solution in original post

2 REPLIES 2
Cynthia_sas
Diamond | Level 26

Hi:

  With the SGPLOT procedure, the option is BREAK:

proc sgplot data=whatever;

  series x=xvar y=yvar / break markers datalabel;

run;

So, I suspect that with PROC TEMPLATE, it will be a BREAK option on the SERIESPLOT statement. And, indeed, if you check the documentation, since the options are listed in alpha order, you will find what you need in the doc:

SAS(R) 9.4 Graph Template Language: Reference, Second Edition

cynthia

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2 replies
  • 2706 views
  • 1 like
  • 2 in conversation