<?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: Box and whisker plot generation in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267604#M9596</link>
    <description>&lt;P&gt;Yes, the line is the median, and the marker is the mean.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 May 2016 13:42:44 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2016-05-02T13:42:44Z</dc:date>
    <item>
      <title>Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267563#M9590</link>
      <description>&lt;P&gt;HI&lt;/P&gt;
&lt;P&gt;I have a data&amp;amp;colon;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data have;&lt;/P&gt;
&lt;P&gt;Input concentration;&lt;/P&gt;
&lt;P&gt;49 50 53 56 59 60 40 30 44&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I generate a box and whisker plot for this with 25th and 75th percentile?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THnaks&lt;/P&gt;
&lt;P&gt;Archana&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 11:08:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267563#M9590</guid>
      <dc:creator>ArchanaSudhir</dc:creator>
      <dc:date>2016-05-02T11:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267575#M9593</link>
      <description>&lt;P&gt;Please have a look at the excellent blogs by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13856"&gt;@Jay54﻿&lt;/a&gt; &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/?s=box+and+whisker" target="_blank"&gt;http://blogs.sas.com/content/graphicallyspeaking/?s=box+and+whisker&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 12:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267575#M9593</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-05-02T12:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267595#M9594</link>
      <description>&lt;P&gt;Here you go:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data have;
Input concentration;
cards;
49
50
53
56
60
40
30
44
;
run;

proc sgplot data=have;
hbox concentration;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 02 May 2016 13:23:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267595#M9594</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2016-05-02T13:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267603#M9595</link>
      <description>&lt;P&gt;Thanks, what does the centre line in hte box mean? Is it not the median?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Archana&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 13:41:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267603#M9595</guid>
      <dc:creator>ArchanaSudhir</dc:creator>
      <dc:date>2016-05-02T13:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267604#M9596</link>
      <description>&lt;P&gt;Yes, the line is the median, and the marker is the mean.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 13:42:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267604#M9596</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2016-05-02T13:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267678#M9597</link>
      <description>&lt;P&gt;Thanks a lot DanH_sas!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One last question, does mean needs to be plotted or geometric mean?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for all the help, appreciate it:)&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 17:30:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267678#M9597</guid>
      <dc:creator>ArchanaSudhir</dc:creator>
      <dc:date>2016-05-02T17:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267680#M9598</link>
      <description>&lt;P&gt;The mean on the box plot is the arithmetic mean, not the geometric mean.&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 17:38:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267680#M9598</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2016-05-02T17:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267683#M9599</link>
      <description>&lt;P&gt;The following link is to SAS documentation that you can use to learn more about what each part of a box plot represents:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_boxplot_details09.htm" target="_self"&gt;Schematic box-and-whisker plot.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;The SGPLOT procedure varies a little (using a diamond instead of a cross for the mean), but the basic idea applies to the VBOX statement in PROC SGPLOT.&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 17:47:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267683#M9599</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-05-02T17:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267969#M9601</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. I am using SAS 9.2. And the Box plots are not getting generated with the code mentioned.&lt;/P&gt;
&lt;P&gt;Results has plot. But when I open it just says loading and never loads.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. What does " whiskers to the last data point within 1.25 times the interquartile range" mean?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Archana&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 14:47:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267969#M9601</guid>
      <dc:creator>ArchanaSudhir</dc:creator>
      <dc:date>2016-05-03T14:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Box and whisker plot generation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267973#M9602</link>
      <description>&lt;P&gt;I strongly encourage you to read about box plots and the statistics that they represent. Here is a step-by-step introduction:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://bolt.mph.ufl.edu/6050-6052/unit-1/one-quantitative-variable-introduction/boxplot/" target="_blank"&gt;http://bolt.mph.ufl.edu/6050-6052/unit-1/one-quantitative-variable-introduction/boxplot/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The interquartile range is the value IQR =&amp;nbsp;P75 -&amp;nbsp;P25 where&amp;nbsp;P75 is the 75th percentile value and P25 is the 25th percentile value.&lt;/P&gt;
&lt;P&gt;The IQR is used to determine the length of the whiskers. Some software uses 1.25 as a multiplier, others use 1.5.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 14:55:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Box-and-whisker-plot-generation/m-p/267973#M9602</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-05-03T14:55:18Z</dc:date>
    </item>
  </channel>
</rss>

