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.
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;
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;
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.
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
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.
Ready to level-up your skills? Choose your own adventure.