BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
greveam
Quartz | Level 8

How can I superscript p=6×10-5 in proc sgplot?

 

I tried;

 

title;
ods escapechar= '^';
proc sgplot data=plot;

INSET "TRTA vs. TRTB, HR 0.6(95% CI: 0.4-0.8, p=6×10^{unicode '207B'x '2075'x}" / POSITION=bottomright noborder opaque;

run;

 

Thanks guys!

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

You don't have to use unicodes here. Simply do

 

ods escapechar="^";

proc sgplot data=sashelp.class;
   scatter x=height y=weight;
   inset "trta vs. trtb, hr 0.6(95% ci: 0.4-0.8, p=6×10^{sup '-5'} " / position=bottomright noborder opaque;
run;

View solution in original post

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

You don't have to use unicodes here. Simply do

 

ods escapechar="^";

proc sgplot data=sashelp.class;
   scatter x=height y=weight;
   inset "trta vs. trtb, hr 0.6(95% ci: 0.4-0.8, p=6×10^{sup '-5'} " / position=bottomright noborder opaque;
run;
DanH_sas
SAS Super FREQ

@PeterClemmensen gave the correct solution for sup/sub in an INSET, but I wanted to clarify how to use multiple Unicode symbols in other situations. You cannot specify multiple Unicode values within the same Unicode call -- you have to split them into separate calls. This means that:

 

"TRTA vs. TRTB, HR 0.6(95% CI: 0.4-0.8, p=6×10^{unicode '207B'x '2075'x}"

 

becomes:

 

"TRTA vs. TRTB, HR 0.6(95% CI: 0.4-0.8, p=6×10^{unicode '207B'x}^{unicode '2075'x}"

 

Hope this helps someone.

 

Thanks!
Dan

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1287 views
  • 1 like
  • 3 in conversation