<?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 Proc Sgplot, Vbox, Include frequencies in plot in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/714885#M34559</link>
    <description>&lt;P&gt;Dear all.&lt;/P&gt;
&lt;P&gt;I created the plot in the attachement, using Vbox in SGPLOT.&lt;/P&gt;
&lt;P&gt;I would like to include the frequencies for each point of NACCFDYSYear somewhere in the plot.&lt;/P&gt;
&lt;P&gt;The XAXISTABLE statement cannot produce frequencies with box plots.&lt;/P&gt;
&lt;P&gt;Any suggestions?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jan 2021 06:35:33 GMT</pubDate>
    <dc:creator>Tz</dc:creator>
    <dc:date>2021-01-28T06:35:33Z</dc:date>
    <item>
      <title>Proc Sgplot, Vbox, Include frequencies in plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/714885#M34559</link>
      <description>&lt;P&gt;Dear all.&lt;/P&gt;
&lt;P&gt;I created the plot in the attachement, using Vbox in SGPLOT.&lt;/P&gt;
&lt;P&gt;I would like to include the frequencies for each point of NACCFDYSYear somewhere in the plot.&lt;/P&gt;
&lt;P&gt;The XAXISTABLE statement cannot produce frequencies with box plots.&lt;/P&gt;
&lt;P&gt;Any suggestions?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 06:35:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/714885#M34559</guid>
      <dc:creator>Tz</dc:creator>
      <dc:date>2021-01-28T06:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgplot, Vbox, Include frequencies in plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/714927#M34563</link>
      <description>&lt;P&gt;Show us your code &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 09:51:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/714927#M34563</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-28T09:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgplot, Vbox, Include frequencies in plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/714932#M34564</link>
      <description>&lt;P&gt;Code attached&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 10:05:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/714932#M34564</guid>
      <dc:creator>Tz</dc:creator>
      <dc:date>2021-01-28T10:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgplot, Vbox, Include frequencies in plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/714952#M34570</link>
      <description>&lt;P&gt;You want this ?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table have as
select sex,status,weight,count(*) as count,max(weight)+.05*range(weight) as y
 from sashelp.heart
  group by sex,status;
quit;
data have ;
 set have;
 by sex status;
 if not first.status then call missing(count,y);
run;

proc sgplot data=have;
vbox weight/category=sex group=status groupdisplay=cluster connect=median;
scatter x=sex y=y/group=status markerchar=count groupdisplay=cluster labelstrip clusterwidth=0.7;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="x.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54027i700C05FEC561F298/image-size/large?v=v2&amp;amp;px=999" role="button" title="x.png" alt="x.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 12:07:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/714952#M34570</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-01-28T12:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgplot, Vbox, Include frequencies in plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/715608#M34608</link>
      <description>&lt;P&gt;Thanks Ksharp&lt;/P&gt;</description>
      <pubDate>Sun, 31 Jan 2021 08:20:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Sgplot-Vbox-Include-frequencies-in-plot/m-p/715608#M34608</guid>
      <dc:creator>Tz</dc:creator>
      <dc:date>2021-01-31T08:20:10Z</dc:date>
    </item>
  </channel>
</rss>

