BookmarkSubscribeRSS Feed
somebody
Lapis Lazuli | Level 10

How can I add a text or footnote that takes the value of a variable? So it changes  depending on the BY group

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

Why not let SAS do that by itself?

 

proc sgplot data=sashelp.iris;
	scatter x=sepallength y=sepalwidth;
	by species;
run;

Result

 

 

Capture.PNG

PaigeMiller
Diamond | Level 26

If the BY statement default text (as shown by @PeterClemmensen) are not exactly what you want, you can add the BY variable name and/or BY variable value into the TITLE or FOOTNOTE statement text, as described here:

https://documentation.sas.com/?docsetId=grstatproc&docsetTarget=n1ukd9sqgqiwwhn1mrx4c1rbse1j.htm&doc...

 

which applies to all SAS procedures, not just PROC SGPLOT.

--
Paige Miller

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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