<?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: Simple Standard Deviaton in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377365#M65457</link>
    <description>&lt;P&gt;You asked to output the sum rather than the standard deviation (std). Also, unless you want the overall std, include the nway option. e.g.:&lt;/P&gt;
&lt;PRE&gt;proc means data=sashelp.class std nway;
class sex ;
var height ;
output std=TransactionAmount out=Count_Amount ;
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jul 2017 14:57:50 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2017-07-19T14:57:50Z</dc:date>
    <item>
      <title>Simple Standard Deviaton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377361#M65455</link>
      <description>&lt;P&gt;Hi there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a&amp;nbsp;simple problem that I just cant seem to find the answer to.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a list of observations with two of the variables being AccountNumber and TransactionAmount, there are mutliple transactions for one account.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Im trying to find the standard deviaton per account.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i currently have the following:-&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc means data=OutboundPayments std ;&lt;BR /&gt; class AccountNumber ;&lt;BR /&gt; var TransactionAmount ;&lt;BR /&gt; output sum=TransactionAmount out=Count_Amount ;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;while the results window does contain the correct standard deviation the output dataset "Count_Amount" does not and im struggling as to why.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 14:48:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377361#M65455</guid>
      <dc:creator>Stretlow</dc:creator>
      <dc:date>2017-07-19T14:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Standard Deviaton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377364#M65456</link>
      <description>&lt;P&gt;In your OUTPUT statement you've only specified a SUM. Add STD to the list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 14:57:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377364#M65456</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-07-19T14:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Standard Deviaton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377365#M65457</link>
      <description>&lt;P&gt;You asked to output the sum rather than the standard deviation (std). Also, unless you want the overall std, include the nway option. e.g.:&lt;/P&gt;
&lt;PRE&gt;proc means data=sashelp.class std nway;
class sex ;
var height ;
output std=TransactionAmount out=Count_Amount ;
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 14:57:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377365#M65457</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-07-19T14:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Standard Deviaton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377367#M65458</link>
      <description>&lt;P&gt;You only requested SUM on the output statement.&lt;/P&gt;
&lt;P&gt;Try&lt;/P&gt;
&lt;P&gt;output sum=TransactionAmountSum std=TransactionAmountSTD&amp;nbsp;out=Count_Amount ;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 14:59:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377367#M65458</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-07-19T14:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Standard Deviaton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377648#M65469</link>
      <description>&lt;P&gt;Thank you for everyones replys on this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So Simple&amp;nbsp;&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://communities.sas.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2017 05:55:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simple-Standard-Deviaton/m-p/377648#M65469</guid>
      <dc:creator>Stretlow</dc:creator>
      <dc:date>2017-07-20T05:55:08Z</dc:date>
    </item>
  </channel>
</rss>

