BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
BruceBrad
Lapis Lazuli | Level 10

I'm doing some exploratory plots of the form:

proc gplot;

  plot v1*v2=v3;

V3 takes about 25 different values. I want to draw line plots. If I just run with the default settings I get symbols. If I add

symbol interpol=join

I get lines for the first 12 series, but just symbols for the rest.

I presume I could individually define 25 different symbol statements, but is there a quicker way? I'm after something useful for diagnostic rather than presentation purposes.

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

You could try

proc sgplot;

     series x=v2 y=v1 /group=v3;

run;

control of line and marker appearance are quite a bit different than the traditional graphics plot and vary as new options are added to the SG procedures with each of the last few releases.

View solution in original post

2 REPLIES 2
ballardw
Super User

You could try

proc sgplot;

     series x=v2 y=v1 /group=v3;

run;

control of line and marker appearance are quite a bit different than the traditional graphics plot and vary as new options are added to the SG procedures with each of the last few releases.

BruceBrad
Lapis Lazuli | Level 10

Thanks. Hadn't looked at sgplot before, but it does seem to have more sensible default values.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 2 replies
  • 941 views
  • 0 likes
  • 2 in conversation