BookmarkSubscribeRSS Feed
Ram_SAS
Obsidian | Level 7

Hi,

I am creating a graph contains two series plot in the same page using sgpanel.  Need to get different legend for respective panel?  Currently I have only one legend summarizing both panel.  Thanks.

3 REPLIES 3
collinelliot
Barite | Level 11

1. Use "noautolegend" in the sgpanel statement.

2. Define your different legends using separate "keylegend" statements. The series that are defined in each legend are determined by assigning names to them in the different plot statements.

 

Stupid example:

 


proc sgpanel data = sashelp.class noautolegend;
    panelby sex;
    scatter x = height y = weight / name = 'hw';
    scatter x = age y = weight / name = 'aw';
    keylegend 'hw' / position = top;
    keylegend 'aw' / position = bottom;
run;
Ram_SAS
Obsidian | Level 7

Thanks for your reply.  But what I need is the list of names (respective F and M ) below  each panel instead of weight as a legend.  

 

proc sgpanel data = sashelp.class noautolegend;
panelby sex;
scatter x = height y = weight / group=name name = 'hw';
keylegend 'hw' / position = top;
run;

collinelliot
Barite | Level 11

That is just an example of how you get separate legends. I have no idea of what you actually are plotting and what you want where.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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