<?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 Adjusted Negative predictive value (NPV) and Positive predictive value (PPV)  with a 6%  prevelence in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Adjusted-Negative-predictive-value-NPV-and-Positive-predictive/m-p/608255#M176995</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; data FatComp1;
         input Test Response Count;
         datalines;
         0 0  17
         0 1  21
         1 0  3
         1 1 39
         ;
      proc sort data=FatComp1;
         by descending Test descending Response;
         run;
      proc freq data=FatComp1 order=data;
         weight Count;
         tables Test*Response;
         run;


      title 'Positive predictive value';
      proc freq data=FatComp1;
         where Test=1;
         weight Count;
         tables Response / binomial( CL = CLOPPERPEARSON WILSON level="1");
         exact binomial;
         run;
   
      title 'Negative predictive value';
      proc freq data=FatComp1;
         where Test=0;
         weight Count;
         tables Response / binomial( CL = CLOPPERPEARSON WILSON level="0");
         exact binomial;
         run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the example above I calculated the&amp;nbsp;Negative predictive value (NPV) and Positive predictive value (PPV) . Now I need to know how to calculate the adjusted NPV and PPV with a prevelence of 6% with their 95% CI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 29 Nov 2019 14:36:06 GMT</pubDate>
    <dc:creator>jeka1212</dc:creator>
    <dc:date>2019-11-29T14:36:06Z</dc:date>
    <item>
      <title>Adjusted Negative predictive value (NPV) and Positive predictive value (PPV)  with a 6%  prevelence</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adjusted-Negative-predictive-value-NPV-and-Positive-predictive/m-p/608255#M176995</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; data FatComp1;
         input Test Response Count;
         datalines;
         0 0  17
         0 1  21
         1 0  3
         1 1 39
         ;
      proc sort data=FatComp1;
         by descending Test descending Response;
         run;
      proc freq data=FatComp1 order=data;
         weight Count;
         tables Test*Response;
         run;


      title 'Positive predictive value';
      proc freq data=FatComp1;
         where Test=1;
         weight Count;
         tables Response / binomial( CL = CLOPPERPEARSON WILSON level="1");
         exact binomial;
         run;
   
      title 'Negative predictive value';
      proc freq data=FatComp1;
         where Test=0;
         weight Count;
         tables Response / binomial( CL = CLOPPERPEARSON WILSON level="0");
         exact binomial;
         run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the example above I calculated the&amp;nbsp;Negative predictive value (NPV) and Positive predictive value (PPV) . Now I need to know how to calculate the adjusted NPV and PPV with a prevelence of 6% with their 95% CI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 14:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adjusted-Negative-predictive-value-NPV-and-Positive-predictive/m-p/608255#M176995</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2019-11-29T14:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Adjusted Negative predictive value (NPV) and Positive predictive value (PPV)  with a 6%  prevele</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adjusted-Negative-predictive-value-NPV-and-Positive-predictive/m-p/614430#M179611</link>
      <description>&lt;P&gt;NPV and PPV are sensitive to prevalence, whereas likelihood ratios are not. Instead of dramatically reducing your prevalence from 75% to 6%, why not calculate the likelihood ratios as demonstrated on this page:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;&lt;A href="http://support.sas.com/kb/24/170.html" target="_blank"&gt;http://support.sas.com/kb/24/170.html&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2019 17:22:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adjusted-Negative-predictive-value-NPV-and-Positive-predictive/m-p/614430#M179611</guid>
      <dc:creator>Norman21</dc:creator>
      <dc:date>2019-12-30T17:22:36Z</dc:date>
    </item>
  </channel>
</rss>

