<?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 display subscript in proc sgplot in y axis for multiple PK parameters in box plot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-subscript-in-proc-sgplot-in-y-axis-for-multiple/m-p/959067#M25282</link>
    <description>&lt;P&gt;You will need to use Unicode for the characters. The following is an example. Be sure to use a full-featured Unicode font. In this case, I chose "Times New Roman Uni", as you where using a serif-based font. Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar '~';
proc sgplot data=sashelp.class;
    vbox weight / category=sex;
    yaxis label="AUC~{Unicode '2097'x}~{Unicode '209B'x}~{Unicode '209C'x}(h*ng/ml)" labelattrs=(family="Times New Roman Uni");
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 12 Feb 2025 16:09:58 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2025-02-12T16:09:58Z</dc:date>
    <item>
      <title>How to display subscript in proc sgplot in y axis for multiple PK parameters in box plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-subscript-in-proc-sgplot-in-y-axis-for-multiple/m-p/959047#M25281</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="thamu_0-1739373251086.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/104566i7A3AE9C82B5F9A5A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="thamu_0-1739373251086.png" alt="thamu_0-1739373251086.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I need to subscript LST in AUCLST in PK figure. could you please anyone guide how to do it? I have multiple Parameters coming in sequence in same figure like CMAX, AUCINF etc..How to subscript in Y axis. I am using Proc SGPLOT for creating this box plot.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 15:16:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-subscript-in-proc-sgplot-in-y-axis-for-multiple/m-p/959047#M25281</guid>
      <dc:creator>thamu</dc:creator>
      <dc:date>2025-02-12T15:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to display subscript in proc sgplot in y axis for multiple PK parameters in box plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-subscript-in-proc-sgplot-in-y-axis-for-multiple/m-p/959067#M25282</link>
      <description>&lt;P&gt;You will need to use Unicode for the characters. The following is an example. Be sure to use a full-featured Unicode font. In this case, I chose "Times New Roman Uni", as you where using a serif-based font. Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar '~';
proc sgplot data=sashelp.class;
    vbox weight / category=sex;
    yaxis label="AUC~{Unicode '2097'x}~{Unicode '209B'x}~{Unicode '209C'x}(h*ng/ml)" labelattrs=(family="Times New Roman Uni");
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Feb 2025 16:09:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-subscript-in-proc-sgplot-in-y-axis-for-multiple/m-p/959067#M25282</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2025-02-12T16:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to display subscript in proc sgplot in y axis for multiple PK parameters in box plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-display-subscript-in-proc-sgplot-in-y-axis-for-multiple/m-p/959138#M25283</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
/*****************************/
%let label1=LST(*ESC*){sup 'lst'}  ;
%let label2=CMAX(*ESC*){sub 'cmax'} ;
data _anno;
length label $ 200;
 drawspace="layoutpercent"; function="text"; textweight="normal"; textsize=12;textcolor="black"; width=200;
 x1=50; y1=2.5;label="&amp;amp;label1."; output;
 x1=2.5;  y1=50;rotate=90;label="&amp;amp;label2."; 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-1739413222233.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/104593i0A7426FF0401DD4D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1739413222233.png" alt="Ksharp_0-1739413222233.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2025 02:20:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-display-subscript-in-proc-sgplot-in-y-axis-for-multiple/m-p/959138#M25283</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-02-13T02:20:30Z</dc:date>
    </item>
  </channel>
</rss>

