<?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: Help to understand reliability analysis in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Help-to-understand-reliability-analysis/m-p/230967#M12172</link>
    <description>&lt;P&gt;Please describe how "it is not working properly". Error messages? Post the errors and log.&lt;/P&gt;
&lt;P&gt;No output? Unexpected output?&amp;nbsp;How&amp;nbsp;is it &amp;nbsp;unexpected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also dealing with sample size generation I would recommend looking into proc power.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Oct 2015 14:38:36 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2015-10-21T14:38:36Z</dc:date>
    <item>
      <title>Help to understand reliability analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Help-to-understand-reliability-analysis/m-p/230935#M12171</link>
      <description>&lt;P&gt;SAS Community, I found this code in an archive at work and it contains no comments. The idea is to calculate a reliable sample size. It is not working properly and I am seeking to understand each component.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The input table cy11rates contains the unique provider ID, risk adjusted rate of complication (rsrr_hwr) and total patient volumn. Is anyone familiar with this process that could help me understand?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data temp;&lt;BR /&gt;set cy11rates;&lt;BR /&gt;numerator=round(rsrr_hwr*volume);&lt;BR /&gt;do i=1 to volume;&lt;BR /&gt; d=1;&lt;BR /&gt; if i&amp;lt;= numerator then n=1;&lt;BR /&gt; else n=0;&lt;BR /&gt; output;&lt;BR /&gt; end;&lt;BR /&gt;run;&lt;BR /&gt; &lt;BR /&gt;proc sql;&lt;BR /&gt;select sum(volume) into:cnt&lt;BR /&gt;from cy11rates;&lt;BR /&gt;quit;&lt;BR /&gt; &lt;BR /&gt;proc freq data=temp;&lt;BR /&gt; tables provid /out=b;&lt;BR /&gt;run;&lt;BR /&gt; &lt;BR /&gt;data c;&lt;BR /&gt; set b;&lt;BR /&gt; rtsq=count*count;&lt;BR /&gt; rtdv=rtsq/&amp;amp;cnt.;&lt;BR /&gt;run;&lt;BR /&gt; &lt;BR /&gt;proc summary sum data=c;&lt;BR /&gt;var rtdv;&lt;BR /&gt;output out=new sum=nv;&lt;BR /&gt;run;&lt;BR /&gt; &lt;BR /&gt;data new2;&lt;BR /&gt;set new;&lt;BR /&gt;t=(&amp;amp;cnt.-nv)/(_freq_-1);&lt;BR /&gt;run;&lt;BR /&gt; &lt;BR /&gt;proc print data=new2; run; &lt;BR /&gt; &lt;BR /&gt;proc anova data=temp;&lt;BR /&gt;ods output OverallANOVA =anova_result;&lt;BR /&gt;class provid;&lt;BR /&gt;model n=provid;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;BR /&gt; &lt;BR /&gt;proc sql;&lt;BR /&gt;create table reliability as&lt;BR /&gt;select distinct (Fvalue-1)/(Fvalue-1+t) as ICC,&lt;BR /&gt; t*(calculated ICC)/(1+(t-1)*(calculated ICC)) as reliability,&lt;BR /&gt; (0.7-0.7*(calculated ICC))/((calculated ICC)-(0.7*(calculated ICC))) as sample_size&lt;BR /&gt;from new2&lt;BR /&gt;join anova_result&lt;BR /&gt;on 1=1&lt;BR /&gt;where anova_result.source='Model';&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2015 13:28:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Help-to-understand-reliability-analysis/m-p/230935#M12171</guid>
      <dc:creator>mikemangini</dc:creator>
      <dc:date>2015-10-21T13:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Help to understand reliability analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Help-to-understand-reliability-analysis/m-p/230967#M12172</link>
      <description>&lt;P&gt;Please describe how "it is not working properly". Error messages? Post the errors and log.&lt;/P&gt;
&lt;P&gt;No output? Unexpected output?&amp;nbsp;How&amp;nbsp;is it &amp;nbsp;unexpected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also dealing with sample size generation I would recommend looking into proc power.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2015 14:38:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Help-to-understand-reliability-analysis/m-p/230967#M12172</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-10-21T14:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help to understand reliability analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Help-to-understand-reliability-analysis/m-p/230969#M12173</link>
      <description>&lt;P&gt;Thank you for your reply. I received a sample size that was a negative number. My hope was to better understand the workings of the procedure so I could determine if adjustments are needed or if the code is bad. The hope was to get a general idea of each step. I will look into proc power though and appreciate that suggestion.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2015 14:41:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Help-to-understand-reliability-analysis/m-p/230969#M12173</guid>
      <dc:creator>mikemangini</dc:creator>
      <dc:date>2015-10-21T14:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help to understand reliability analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Help-to-understand-reliability-analysis/m-p/230973#M12174</link>
      <description>&lt;P&gt;My understanding of proc power is to plan sample size for a comparison of means. In my analysis I do not have an intervention. I wish to know the minimum patient volume for a provider group so that a risk adjusted complication rate can be considered stable.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2015 14:48:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Help-to-understand-reliability-analysis/m-p/230973#M12174</guid>
      <dc:creator>mikemangini</dc:creator>
      <dc:date>2015-10-21T14:48:11Z</dc:date>
    </item>
  </channel>
</rss>

