BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
AnnaIv
Calcite | Level 5

Dear SAS support team,

 

I have a short question regarding the labels on the graph: is it possible to use in the axis labels indices and greek letters? E.g. "C_1" and "theta".

Thank you in advance for your help!

1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

Hello @AnnaIv and welcome to the SAS Support Communities!

 

Yes, this is possible:

proc sgplot data=sashelp.class;
xaxis label="Letter C with index 1 is here: C(*ESC*){unicode '2081'x}" labelattrs=GraphUnicodeText;
yaxis label="Here is the Greek letter theta: (*ESC*){unicode theta} and a variant of it: (*ESC*){unicode '03D1'x}";
scatter x=weight y=height;
run;

(Code adapted from an example found in "Creating Oncology Figures Using ODS Graphics ..." using hex codes found in a quick internet search.)

 

Result:

unicode_labels.png

 

Without the labelattrs=GraphUnicodeText option in the XAXIS statement the subscript 1 did not appear.

View solution in original post

2 REPLIES 2
FreelanceReinh
Jade | Level 19

Hello @AnnaIv and welcome to the SAS Support Communities!

 

Yes, this is possible:

proc sgplot data=sashelp.class;
xaxis label="Letter C with index 1 is here: C(*ESC*){unicode '2081'x}" labelattrs=GraphUnicodeText;
yaxis label="Here is the Greek letter theta: (*ESC*){unicode theta} and a variant of it: (*ESC*){unicode '03D1'x}";
scatter x=weight y=height;
run;

(Code adapted from an example found in "Creating Oncology Figures Using ODS Graphics ..." using hex codes found in a quick internet search.)

 

Result:

unicode_labels.png

 

Without the labelattrs=GraphUnicodeText option in the XAXIS statement the subscript 1 did not appear.

AnnaIv
Calcite | Level 5
Thank you very much for quick reply! It was very helpfull!

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

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
  • 2 replies
  • 1007 views
  • 1 like
  • 2 in conversation