<?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: How do you get the likelihood ratio LR+, LR- with their 95% CI in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-you-get-the-likelihood-ratio-LR-LR-with-their-95-CI/m-p/608484#M177102</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/172703"&gt;@jeka1212&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/24/170.html" target="_blank" rel="noopener"&gt;SAS Usage Note 24170 "Estimating sensitivity, specificity, positive and negative predictive values, and other statistics"&lt;/A&gt; contains a worked example where these statistics are calculated and a SAS macro &lt;A href="http://support.sas.com/kb/58/775.html" target="_blank" rel="noopener"&gt;NLEstimate&lt;/A&gt; is used to obtain 95% confidence intervals for them. Please apply this to your data and get back to us if you get stuck.&lt;/P&gt;</description>
    <pubDate>Sat, 30 Nov 2019 20:49:15 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2019-11-30T20:49:15Z</dc:date>
    <item>
      <title>How do you get the likelihood ratio LR+, LR- with their 95% CI</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-you-get-the-likelihood-ratio-LR-LR-with-their-95-CI/m-p/608253#M176994</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;&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;In the example above I need to calculate the likelihood ratio&amp;nbsp;LR+, LR- with their 95% CI and was wondering if you can help?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 14:29:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-you-get-the-likelihood-ratio-LR-LR-with-their-95-CI/m-p/608253#M176994</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2019-11-29T14:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: How do you get the likelihood ratio LR+, LR- with their 95% CI</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-you-get-the-likelihood-ratio-LR-LR-with-their-95-CI/m-p/608292#M177010</link>
      <description>&lt;P&gt;Not familiar with the 'LR+' and 'LR-' notation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect that you may want, at least partially&lt;/P&gt;
&lt;PRE&gt;proc freq data=work.FatComp1 order=data;
   weight Count;
   tables Test*Response /or;
   run;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;PRE&gt;proc freq data=work.FatComp1 order=data;
   weight Count;
   tables Test*Response / cmh1;
   run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Nov 2019 16:55:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-you-get-the-likelihood-ratio-LR-LR-with-their-95-CI/m-p/608292#M177010</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-11-29T16:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do you get the likelihood ratio LR+, LR- with their 95% CI</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-you-get-the-likelihood-ratio-LR-LR-with-their-95-CI/m-p/608334#M177030</link>
      <description>Thanks Ballardw. The LR+ and LR- are positive and negative likelihood ratio respectively. That is what I am looking for.</description>
      <pubDate>Fri, 29 Nov 2019 20:01:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-you-get-the-likelihood-ratio-LR-LR-with-their-95-CI/m-p/608334#M177030</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2019-11-29T20:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do you get the likelihood ratio LR+, LR- with their 95% CI</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-you-get-the-likelihood-ratio-LR-LR-with-their-95-CI/m-p/608484#M177102</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/172703"&gt;@jeka1212&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/24/170.html" target="_blank" rel="noopener"&gt;SAS Usage Note 24170 "Estimating sensitivity, specificity, positive and negative predictive values, and other statistics"&lt;/A&gt; contains a worked example where these statistics are calculated and a SAS macro &lt;A href="http://support.sas.com/kb/58/775.html" target="_blank" rel="noopener"&gt;NLEstimate&lt;/A&gt; is used to obtain 95% confidence intervals for them. Please apply this to your data and get back to us if you get stuck.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Nov 2019 20:49:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-you-get-the-likelihood-ratio-LR-LR-with-their-95-CI/m-p/608484#M177102</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2019-11-30T20:49:15Z</dc:date>
    </item>
  </channel>
</rss>

