<?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: Proc power onewayanova in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606286#M17367</link>
    <description>You need to provide that based on your knowledge of the underlying data. It can be estimated. There are some cases where post hoc power analysis is appropriate, make sure your case is one - it's usually not considered a good idea at all.</description>
    <pubDate>Thu, 21 Nov 2019 20:31:16 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-11-21T20:31:16Z</dc:date>
    <item>
      <title>Proc power onewayanova</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606268#M17362</link>
      <description>&lt;P&gt;Using SAS 9.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wanting to do a post hoc power analysis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;  proc power plotonly;
      onewayanova
         groupmeans = 35.6 | 33.7 | 30.2 | 29 28 | 25.9
         stddev = 3.75
         groupweights = (2 1 1 1 1)
         alpha = 0.025
         ntotal = 24
         power = .
         contrast = (4 -1 -1 -1 -1) (0  1  1 -1 -1)
                    (0  1 -1  0  0) (0  0  0  1 -1);
      plot x=n min=24 max=480;
   run;&lt;/PRE&gt;&lt;P&gt;. I am using the sample code from SAS below but I am not sure where to get the standard deviation?&amp;nbsp; If you could please tell me how to find that it would be helpful. Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2019 19:35:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606268#M17362</guid>
      <dc:creator>GS2</dc:creator>
      <dc:date>2019-11-21T19:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc power onewayanova</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606286#M17367</link>
      <description>You need to provide that based on your knowledge of the underlying data. It can be estimated. There are some cases where post hoc power analysis is appropriate, make sure your case is one - it's usually not considered a good idea at all.</description>
      <pubDate>Thu, 21 Nov 2019 20:31:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606286#M17367</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-21T20:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc power onewayanova</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606288#M17368</link>
      <description>&lt;P&gt;Yes it is not a good idea to do a post hoc power analysis (almost all of the literature says this), however it is a specific request that I cannot ignore.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I have 4 groups means cannot I just use those to calculate a standard deviation estimate?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2019 20:36:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606288#M17368</guid>
      <dc:creator>GS2</dc:creator>
      <dc:date>2019-11-21T20:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Proc power onewayanova</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606289#M17369</link>
      <description>Yes, you can use your data to estimate the standard deviation.</description>
      <pubDate>Thu, 21 Nov 2019 20:50:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606289#M17369</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-21T20:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Proc power onewayanova</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606444#M17407</link>
      <description>&lt;P&gt;Would it be appropriate to take the 4 means that I have calculated and run them through a code like below to get the standard deviation or since they are mean values is that an inappropriate way? Thank you&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;create table want as&lt;BR /&gt;select *, std(150.3684, 63.59701, 53.16667, 37.21429 ) as sd_a&lt;BR /&gt;from have;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 13:20:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606444#M17407</guid>
      <dc:creator>GS2</dc:creator>
      <dc:date>2019-11-22T13:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc power onewayanova</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606495#M17414</link>
      <description>That's wrong, you can't figure out the standard deviations from aggregated data you need to use the raw data.</description>
      <pubDate>Fri, 22 Nov 2019 15:42:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-power-onewayanova/m-p/606495#M17414</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-22T15:42:54Z</dc:date>
    </item>
  </channel>
</rss>

