<?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 to calculate f score with 95% confidence interval using Base SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472278#M121077</link>
    <description>&lt;P&gt;Hi Paige Miller,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just like kappa statistics with 95% CI can be obtained using proc freq with AGREE. I was looking for F1 score. Can you suggest something.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Jun 2018 19:51:25 GMT</pubDate>
    <dc:creator>DeepakSwain</dc:creator>
    <dc:date>2018-06-21T19:51:25Z</dc:date>
    <item>
      <title>How to calculate f score with 95% confidence interval using Base SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472230#M121046</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having a 2X2 table. I want to calculate&amp;nbsp;f score with 95% confidence interval. Can anybody suggest me how to proceed.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*CREATING TABLE 2 BY 2 TABLE */
data study;
input obs1 obs2 count;
datalines;
1 1 331
1 0 13
0 1 2
0 0 654
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you in advance for your kind reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 18:18:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472230#M121046</guid>
      <dc:creator>DeepakSwain</dc:creator>
      <dc:date>2018-06-21T18:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate f score with 95% confidence interval using Base SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472243#M121056</link>
      <description>&lt;P&gt;You are talking about PROC FREQ, or something else?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I know, there are no F-scores in a 2x2 table, there is a Chi-square value (not really a score), and the Chi-square value doesn't have confidence intervals associated with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So it's really not clear what you want. Please explain further.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 18:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472243#M121056</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-06-21T18:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate f score with 95% confidence interval using Base SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472247#M121060</link>
      <description>&lt;P&gt;Hi PaigeMiller,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;Thank you for the reply.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;I mean to say F1 score which is the harmonic mean of precision and sensitivity (i.e.&amp;nbsp;2TP/(2TP+FP+FN).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;TP=true positive, FP=false positive, TN=true negative, FN=false negative&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;With regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 18:55:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472247#M121060</guid>
      <dc:creator>DeepakSwain</dc:creator>
      <dc:date>2018-06-21T18:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate f score with 95% confidence interval using Base SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472251#M121062</link>
      <description>&lt;P&gt;If this is what you mean&lt;/P&gt;
&lt;P&gt;&lt;A href="https://en.wikipedia.org/wiki/F1_score" target="_blank"&gt;https://en.wikipedia.org/wiki/F1_score&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then I believe you could run PROC FREQ and then apply the formula for F1 to the PROC FREQ output. I don't see any confidence interval calculations.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 19:02:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472251#M121062</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-06-21T19:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate f score with 95% confidence interval using Base SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472278#M121077</link>
      <description>&lt;P&gt;Hi Paige Miller,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just like kappa statistics with 95% CI can be obtained using proc freq with AGREE. I was looking for F1 score. Can you suggest something.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 19:51:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472278#M121077</guid>
      <dc:creator>DeepakSwain</dc:creator>
      <dc:date>2018-06-21T19:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate f score with 95% confidence interval using Base SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472280#M121078</link>
      <description>&lt;P&gt;I am not aware of a 95% CI for the F1 score, nor is Wikipedia aware of such a confidence interval.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thus the only possibility I can think of is some sort of bootstrap.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 19:55:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-f-score-with-95-confidence-interval-using-Base/m-p/472280#M121078</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-06-21T19:55:52Z</dc:date>
    </item>
  </channel>
</rss>

