When I going to plot a special character ∞ (Infinity) as subscript in position of Y axis label, I just failed so many times.
So, May some of you could help me? Thanks a lot.
This is the demo code:
ods escapechar='^';
data test;
input Dose AucInf;
cards;
10 11
10 15
20 18
20 20
30 24
30 25
;
run;
proc sgplot data = test;
scatter x = Dose y = AucInf;
label Dose = 'Dose(mg)' AucInf = 'AUC^{sub 0-∞}(min*ng/mL)';
run;
Like I said before, neither label statement nor yaxis statement works.
I also tried the unicode method:
https://blogs.sas.com/content/graphicallyspeaking/2011/11/14/the-power-of-unicode/
But there never have a subscript format unicode for ∞ !