As of right now, the output graph is writing out the text exactly rather than translating it to a superscript or less-than-or-equal-to symbol.
proc format;
value $BMI
'Not Obese' = "BMI < 30 kg/m^{super 2}"
'Obese' = "30 ^{unicode 2264} BMI ^{unicode 2264} 40 kg/m^{super 2}"
'Severely Obese'= "BMI > 40 kg/m^{super 2}"
'All Subjects' = "All Subjects";
run;
ods escapechar = "^";
proc sgpanel data = fig23 (where = (SPECTYPE ^in ("Breast Milk", "Plasma"))) pad = (top=5% bottom=5%) sganno = footnote3;
panelby BMIGRP ABRV_SPECTYPE / layout = lattice onepanel novarname;
histogram PCOMP / scale = count datalabel = count;
format BMIGRP $BMI.;
run;
There are a few issues issues here:
First, @ballardw is correct. You MUST use the default escape char sequence, which is (*ESC*), when using inline functions in PROC FORMAT for ODS Graphics output, . In the procedures, you can use the redefined character.
Second, the SUP and SUB functions are supported only in annotation in the SGPANEL procedure. However, you CAN use the Unicode equivalent of s superscript 2 in your PROC FORMAT, which is '00b2'x.
Third, your Unicode specifications should be wrapped in single quotes, followed by an 'x' (for hex). For example: (*ESC*){unicode '00b2'x}
Hope this helps!
Dan
Try using *ESC* in place of the ^ in the format definitions.
There are a few issues issues here:
First, @ballardw is correct. You MUST use the default escape char sequence, which is (*ESC*), when using inline functions in PROC FORMAT for ODS Graphics output, . In the procedures, you can use the redefined character.
Second, the SUP and SUB functions are supported only in annotation in the SGPANEL procedure. However, you CAN use the Unicode equivalent of s superscript 2 in your PROC FORMAT, which is '00b2'x.
Third, your Unicode specifications should be wrapped in single quotes, followed by an 'x' (for hex). For example: (*ESC*){unicode '00b2'x}
Hope this helps!
Dan
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.