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

Hello,

 

I am trying to create a panel of scatter plots in a pdf file for comparison. With the code below, each individual scatter plot is printed on one page. In total, there are 450+ distinct values of ID. Is there a way to panel the scatterplots so I can compare groups of IDs together on a single page? I realize all plots for the IDs won't fit on a single page, but it would be easier to scan a few pages than 450+!

 

Thanks for any help or insights.

 

Dhrumil

 

ods pdf file='path\scatter.pdf';

proc sgplot data=&dsn;
by ID;
scatter x=year y=fcst;
run;

ods pdf close; 
1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

This should work for you:

ods pdf file='path\scatter.pdf';

proc sgpanel data=&dsn;
panelby ID;
scatter x=year y=fcst;
run;

ods pdf close; 

You can set the number of rows and/or columns for the panel, or just let the procedure try to find the best panel size for you.

 

Hope this helps!

Dan

View solution in original post

1 REPLY 1
DanH_sas
SAS Super FREQ

This should work for you:

ods pdf file='path\scatter.pdf';

proc sgpanel data=&dsn;
panelby ID;
scatter x=year y=fcst;
run;

ods pdf close; 

You can set the number of rows and/or columns for the panel, or just let the procedure try to find the best panel size for you.

 

Hope this helps!

Dan

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
  • 1 reply
  • 2032 views
  • 0 likes
  • 2 in conversation