<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how to add a superscript on y axis label? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-add-a-superscript-on-y-axis-label/m-p/248785#M46759</link>
    <description>Could you please try &lt;BR /&gt;&lt;BR /&gt;yaxis label="10^{super -3}"&lt;BR /&gt;</description>
    <pubDate>Tue, 09 Feb 2016 00:38:12 GMT</pubDate>
    <dc:creator>Jagadishkatam</dc:creator>
    <dc:date>2016-02-09T00:38:12Z</dc:date>
    <item>
      <title>how to add a superscript on y axis label?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-add-a-superscript-on-y-axis-label/m-p/248731#M46739</link>
      <description>&lt;P&gt;I tried to add 10^(-3) to the label of y axis. I want to get rid of "^" and&amp;nbsp;make (-3) be superscript. I used:&lt;/P&gt;
&lt;P&gt;ods escapechar='^';&lt;/P&gt;
&lt;P&gt;Proc sgplot……&lt;/P&gt;
&lt;P&gt;yaxis label="10^{unicode '00b3'x}"&lt;/P&gt;
&lt;P&gt;which allows me to add superscript (3). But I cannot add superscript (-3). What is the Unicode for “superscript (-3) in SAS? Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 20:44:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-add-a-superscript-on-y-axis-label/m-p/248731#M46739</guid>
      <dc:creator>sky1</dc:creator>
      <dc:date>2016-02-08T20:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to add a superscript on y axis label?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-add-a-superscript-on-y-axis-label/m-p/248785#M46759</link>
      <description>Could you please try &lt;BR /&gt;&lt;BR /&gt;yaxis label="10^{super -3}"&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Feb 2016 00:38:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-add-a-superscript-on-y-axis-label/m-p/248785#M46759</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2016-02-09T00:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to add a superscript on y axis label?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-add-a-superscript-on-y-axis-label/m-p/856300#M338344</link>
      <description>&lt;P&gt;Did you ever find the solution to this problem? I am in exactly the same boat, so far none of the proposed fixes are working for me!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 18:16:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-add-a-superscript-on-y-axis-label/m-p/856300#M338344</guid>
      <dc:creator>kivester</dc:creator>
      <dc:date>2023-01-30T18:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to add a superscript on y axis label?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-add-a-superscript-on-y-axis-label/m-p/856423#M338389</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*用于加X轴Y轴标签的上下标*/
data _anno;
length label $ 200;
 drawspace="layoutpercent"; function="text"; textweight="normal"; textsize=12;textcolor="black"; width=200;
 x1=50; y1=2.5;label="体重(*ESC*){sub 'mw'}"; output;
 x1=2.5;  y1=50;rotate=90;label="身高(*ESC*){sup 'mw'}"; output;
 run;
/*****画散点图*****/
proc sgplot data=sashelp.class sganno=_anno;   
scatter x=weight y=height;   
xaxis label=' ';
yaxis label=' ';
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1675160290597.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79966i720D63CB0B7E4911/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1675160290597.png" alt="Ksharp_0-1675160290597.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2023 10:18:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-add-a-superscript-on-y-axis-label/m-p/856423#M338389</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-01-31T10:18:18Z</dc:date>
    </item>
  </channel>
</rss>

