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

hackathon24-white-horiz.png

Join the 2025 SAS Hackathon!

Calling all data scientists and open-source enthusiasts! Want to solve real problems that impact your company or the world? Register to hack by August 31st!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 2322 views
  • 0 likes
  • 2 in conversation