<?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 Histogram standart desviation in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96908#M3633</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, I've been trying to make a graph using PROC UNIVARIATE, however I couldn't understand why is not possible&amp;nbsp; show de first, second and the third standart desviation as the image below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Image.bmp" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/3653_Image.bmp" width="450" /&gt;&lt;/P&gt;&lt;P&gt;How can I show the S.D like the image above, using proc UNIVARIATE ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tk's in advanced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jun 2013 23:08:48 GMT</pubDate>
    <dc:creator>Abud</dc:creator>
    <dc:date>2013-06-05T23:08:48Z</dc:date>
    <item>
      <title>Histogram standart desviation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96908#M3633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, I've been trying to make a graph using PROC UNIVARIATE, however I couldn't understand why is not possible&amp;nbsp; show de first, second and the third standart desviation as the image below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Image.bmp" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/3653_Image.bmp" width="450" /&gt;&lt;/P&gt;&lt;P&gt;How can I show the S.D like the image above, using proc UNIVARIATE ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tk's in advanced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 23:08:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96908#M3633</guid>
      <dc:creator>Abud</dc:creator>
      <dc:date>2013-06-05T23:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Histogram standart desviation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96909#M3634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a custom graph, that you can make with SAS 9.3.&amp;nbsp; Use PROC MEANS to get all the statistics you need and merge with original data used for histogram.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use SGPLOT procedure to create the histogram, and use REFLINE statement to overlay the lines for the SD values.&amp;nbsp; then, you can annotate the rest of the formation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 23:46:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96909#M3634</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2013-06-05T23:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Histogram standart desviation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96910#M3635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjay, could you send me a example ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doesn't SAS have a function to know the "z-scores" ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jun 2013 12:55:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96910#M3635</guid>
      <dc:creator>Abud</dc:creator>
      <dc:date>2013-06-06T12:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Histogram standart desviation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96911#M3636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Starting with SAS 9.3m2, PROC UNIVARIATE enables you to place reference lines at the values of selected statistics, including multiples of the sample standard deviation.&amp;nbsp; Here is some code and output.&amp;nbsp; I have specified a list of bin midpoints so all the reference lines are displayed.&amp;nbsp; (Axis ranges are not extended automatically to include reference lines.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;data foo;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; do i = 1 to 100;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x = 10 + rannor(123);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;proc univariate data=foo noprint;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; histogram x /&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; normal(noprint)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; statref= -3std -2std -1std mean 1std 2std 3std&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; statreflabel= "-3 S.D" "-2 S.D" "-1 S.D" "" "1 S.D" "2 S.D" "3 S.D"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; midpoints= 7 to 13 by 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nocurvelegend;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="3657" alt="Histogram5.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/3657_Histogram5.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jun 2013 15:44:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96911#M3636</guid>
      <dc:creator>BuckyRansdell</dc:creator>
      <dc:date>2013-06-06T15:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Histogram standart desviation</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96912#M3637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Bucky, first of all thank's for the tip, it was exactly what I'm trying to do, however, my SAS is 9.2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jun 2013 16:06:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histogram-standart-desviation/m-p/96912#M3637</guid>
      <dc:creator>Abud</dc:creator>
      <dc:date>2013-06-06T16:06:06Z</dc:date>
    </item>
  </channel>
</rss>

