<?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: stem-and-leaf Plot in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/505507#M26000</link>
    <description>&lt;P&gt;Please start a brand new session, this post is two years old.&lt;/P&gt;
&lt;P&gt;And better post it at ODS Graph forum, if you want plot a scatter/series graph.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Oct 2018 12:27:21 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2018-10-18T12:27:21Z</dc:date>
    <item>
      <title>stem-and-leaf Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/430354#M22618</link>
      <description>&lt;P&gt;Dose SAS have any proc to produce data for&amp;nbsp;stem-and-leaf plot. Or how can I draw&amp;nbsp;stem-and-leaf plot for this data:&lt;/P&gt;&lt;P&gt;124, 129, 118, 135, 114, 139, 127, 141, 111, 144, 133, 127,&lt;BR /&gt;122, 119, 132, 137, 146, 122, 119, 115, 125, 132, 118, 126,&lt;BR /&gt;134, 147, 122, 119, 116, 125, 128, 130, 127, 135, 122, 141&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 11:15:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/430354#M22618</guid>
      <dc:creator>Raffik</dc:creator>
      <dc:date>2018-01-24T11:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: stem-and-leaf Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/430419#M22620</link>
      <description>&lt;P&gt;Yes. Check PROC UNIVARIATE .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PLOTS | PLOT
produces a stem-and-leaf plot (or a horizontal bar chart), a box plot, and a normal probability
plot in line printer output. If you use a BY statement, side-by-side box plots that are labeled
“Schematic Plots” appear after the univariate analysis for the last BY group.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Jan 2018 13:43:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/430419#M22620</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-01-24T13:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: stem-and-leaf Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/430422#M22621</link>
      <description>&lt;P&gt;Works. Thanks. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 13:48:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/430422#M22621</guid>
      <dc:creator>Raffik</dc:creator>
      <dc:date>2018-01-24T13:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: stem-and-leaf Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/430423#M22622</link>
      <description>&lt;P&gt;Example 4.5: Creating Plots for Line Printer Output&lt;BR /&gt;The PLOT option in the PROC UNIVARIATE statement requests several basic plots for display in&lt;BR /&gt;line printer output. For more information about plots created by the PLOT option, see the section&lt;BR /&gt;“Creating Line Printer Plots” on page 338. This example illustrates the use of the PLOT option as&lt;BR /&gt;well as BY processing in PROC UNIVARIATE.&lt;BR /&gt;A researcher is analyzing a data set consisting of air pollution data from three different measurement&lt;BR /&gt;sites. The data set AirPoll, created by the following statements, contains the variablesSite andOzone,&lt;BR /&gt;which are the site number and ozone level, respectively.&lt;BR /&gt;data AirPoll (keep = Site Ozone);&lt;BR /&gt;label Site = 'Site Number'&lt;BR /&gt;Ozone = 'Ozone level (in ppb)';&lt;BR /&gt;do i = 1 to 3;&lt;BR /&gt;input Site @@;&lt;BR /&gt;do j = 1 to 15;&lt;BR /&gt;input Ozone @@;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;datalines;&lt;BR /&gt;102 4 6 3 4 7 8 2 3 4 1 3 8 9 5 6&lt;BR /&gt;134 5 3 6 2 1 2 4 3 2 4 6 4 6 3 1&lt;BR /&gt;137 8 9 7 8 6 7 6 7 9 8 9 8 7 8 5&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;The following statements produce stem-and-leaf plots, box plots, and normal probability plots for&lt;BR /&gt;each site in the AirPoll data set:&lt;BR /&gt;ods select Plots SSPlots;&lt;BR /&gt;proc univariate data=AirPoll plot;&lt;BR /&gt;by Site;&lt;BR /&gt;var Ozone;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 13:49:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/430423#M22622</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-01-24T13:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: stem-and-leaf Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/505448#M25994</link>
      <description>&lt;P&gt;how to make normal probability plot in other line printer output&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 07:25:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/505448#M25994</guid>
      <dc:creator>longornian</dc:creator>
      <dc:date>2018-10-18T07:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: stem-and-leaf Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/505507#M26000</link>
      <description>&lt;P&gt;Please start a brand new session, this post is two years old.&lt;/P&gt;
&lt;P&gt;And better post it at ODS Graph forum, if you want plot a scatter/series graph.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 12:27:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/stem-and-leaf-Plot/m-p/505507#M26000</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-18T12:27:21Z</dc:date>
    </item>
  </channel>
</rss>

