<?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: Suppress symbols in BoxPlot in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586975#M14604</link>
    <description>&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2019/08/28/schematic-box-plot.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2019/08/28/schematic-box-plot.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 07 Sep 2019 13:05:09 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2019-09-07T13:05:09Z</dc:date>
    <item>
      <title>Suppress symbols in BoxPlot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586802#M14575</link>
      <description>&lt;P&gt;Can I suppress the mean or median symbol in Proc BoxPlot?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 16:14:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586802#M14575</guid>
      <dc:creator>Batman</dc:creator>
      <dc:date>2019-09-06T16:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress symbols in BoxPlot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586814#M14581</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/9248"&gt;@Batman&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Can I suppress the mean or median symbol in Proc BoxPlot?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Time to move to Prog SGPLOT and the VBOX or HBOX plot. That allows suppressing either or both with the NOMEAN and NOMEDIAN option.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 16:48:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586814#M14581</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-09-06T16:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress symbols in BoxPlot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586839#M14592</link>
      <description>Yes, SGPLOT does allow me to suppress the mean. Is there away to label the symbols on the chart, so the reader can know the "I" stands for the median?</description>
      <pubDate>Fri, 06 Sep 2019 18:25:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586839#M14592</guid>
      <dc:creator>Batman</dc:creator>
      <dc:date>2019-09-06T18:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress symbols in BoxPlot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586876#M14594</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/9248"&gt;@Batman&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Yes, SGPLOT does allow me to suppress the mean. Is there away to label the symbols on the chart, so the reader can know the "I" stands for the median?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Since "I" is not a default associated with medians you may have to share some of your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One of the very nice features of the newer SGPLOT over the older procedures Gplot/Gchart/Boxplot is the ability to, within some limits, overlay multiple plots. And one of those is designed to place text at graph positions. The trick may be getting the coordinates for something like&amp;nbsp;a summary value like mean or median, not really difficult, and then combining with the data to plot. A brief example that shows the word "Median" in place of the bar in a vertical box plot.&lt;/P&gt;
&lt;PRE&gt;proc summary data=sashelp.class nway;
   class sex;
   var height;
   output out=work.summary (drop=_:) mean= median=/autoname;
run;

data work.plot;
   set sashelp.class
       work.summary
   ;
   if height_median ne . then medtxt = 'Median';
run;

proc sgplot data=work.plot;
   vbox height /category=sex nomedian;
   text x=sex y=height_median text=medtxt;
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 20:39:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586876#M14594</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-09-06T20:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress symbols in BoxPlot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586975#M14604</link>
      <description>&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2019/08/28/schematic-box-plot.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2019/08/28/schematic-box-plot.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 13:05:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Suppress-symbols-in-BoxPlot/m-p/586975#M14604</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-09-07T13:05:09Z</dc:date>
    </item>
  </channel>
</rss>

