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

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;
1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

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

View solution in original post

3 REPLIES 3
ballardw
Super User

Try using *ESC* in place of the ^ in the format definitions.

 

 

DanH_sas
SAS Super FREQ

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

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 594 views
  • 1 like
  • 4 in conversation