Please, can you advise on this two challenges I am experiencing?
1. How do I write the superscript for -2 or -3 (i.e. X^-3).
2. Please, what is the code for subscripts?
I will appreciate any help.
For axis labels, you will need to use a combination of Unicode characters. Here is a simple example to create X^-4:
ods escapechar '~';
proc sgplot data=sashelp.class;
xaxis label="X~{unicode '207b'x}~{unicode '2074'x}"
labelattrs=GraphUnicodeText;
scatter x=weight y=height;
run;
You must also use a full-featured Unicode font to get many of the super/subscripts in your text. Referencing the GraphUnicodeText style element will give you one of those fonts that is also appropriate for your style.
Hope this helps!
Dan
Many thanks.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.