<?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 How to create a box plot for univariate? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449768#M23497</link>
    <description>&lt;P&gt;How to use a proc box plot procedure to create a box plot for one variable where the syntax seems to require group variable in the plot statement besides the analysis variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="100%" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR valign="top"&gt;
&lt;TD class="title2"&gt;&lt;SPAN&gt;PLOT Statement&lt;/SPAN&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DL class="syntax"&gt;
&lt;DD class="Strong"&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/statug_boxplot_sect012.htm" target="_blank"&gt;PLOT&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(analysis-variables)&lt;STRONG&gt;*group-variable&lt;/STRONG&gt; &amp;lt;(&lt;I&gt;block-variables&lt;/I&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;)&amp;gt; &amp;lt;&lt;I&gt;=symbol-variable&lt;/I&gt;&amp;gt; &amp;lt;/ options &amp;gt; ;&lt;/DD&gt;
&lt;/DL&gt;
&lt;P&gt;I only want to see the spread for the variable height in the dataset &lt;STRONG&gt;sashelp.class&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Mar 2018 20:22:14 GMT</pubDate>
    <dc:creator>Andygray</dc:creator>
    <dc:date>2018-03-29T20:22:14Z</dc:date>
    <item>
      <title>How to create a box plot for univariate?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449768#M23497</link>
      <description>&lt;P&gt;How to use a proc box plot procedure to create a box plot for one variable where the syntax seems to require group variable in the plot statement besides the analysis variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="100%" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR valign="top"&gt;
&lt;TD class="title2"&gt;&lt;SPAN&gt;PLOT Statement&lt;/SPAN&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DL class="syntax"&gt;
&lt;DD class="Strong"&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/statug_boxplot_sect012.htm" target="_blank"&gt;PLOT&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(analysis-variables)&lt;STRONG&gt;*group-variable&lt;/STRONG&gt; &amp;lt;(&lt;I&gt;block-variables&lt;/I&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;)&amp;gt; &amp;lt;&lt;I&gt;=symbol-variable&lt;/I&gt;&amp;gt; &amp;lt;/ options &amp;gt; ;&lt;/DD&gt;
&lt;/DL&gt;
&lt;P&gt;I only want to see the spread for the variable height in the dataset &lt;STRONG&gt;sashelp.class&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Mar 2018 20:22:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449768#M23497</guid>
      <dc:creator>Andygray</dc:creator>
      <dc:date>2018-03-29T20:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a box plot for univariate?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449770#M23498</link>
      <description>&lt;P&gt;Create a group variable that has the same value for every observaiton in your data set.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Mar 2018 20:27:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449770#M23498</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-03-29T20:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a box plot for univariate?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449772#M23499</link>
      <description>&lt;P&gt;Perhaps use a different procedure:&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=sashelp.class;
   vbox height;
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 29 Mar 2018 20:29:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449772#M23499</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-03-29T20:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a box plot for univariate?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449775#M23501</link>
      <description>&lt;P&gt;Any of the GPLOT/PLOT procedures would be considered outdated. Use the SG Procedures whenever possible.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Mar 2018 20:41:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449775#M23501</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-03-29T20:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a box plot for univariate?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449793#M23504</link>
      <description>&lt;P&gt;Thank you everybody for your responses.&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;You are a star!!!!!!!!!&lt;/P&gt;</description>
      <pubDate>Thu, 29 Mar 2018 22:28:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-create-a-box-plot-for-univariate/m-p/449793#M23504</guid>
      <dc:creator>Andygray</dc:creator>
      <dc:date>2018-03-29T22:28:57Z</dc:date>
    </item>
  </channel>
</rss>

