BookmarkSubscribeRSS Feed
DeepakSwain
Pyrite | Level 9

Hi there,

 

I am having a 2X2 table. I want to calculate f score with 95% confidence interval. Can anybody suggest me how to proceed. 

/*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;

Thank you in advance for your kind reply. 

 

Regards,

Swain
5 REPLIES 5
PaigeMiller
Diamond | Level 26

You are talking about PROC FREQ, or something else?

 

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.

 

So it's really not clear what you want. Please explain further.

--
Paige Miller
DeepakSwain
Pyrite | Level 9

Hi PaigeMiller,

 

 

 

Swain
PaigeMiller
Diamond | Level 26

If this is what you mean

https://en.wikipedia.org/wiki/F1_score

 

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.

--
Paige Miller
DeepakSwain
Pyrite | Level 9

Hi Paige Miller,

 

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. 

 

With regards,

 

Swain
PaigeMiller
Diamond | Level 26

I am not aware of a 95% CI for the F1 score, nor is Wikipedia aware of such a confidence interval.

 

Thus the only possibility I can think of is some sort of bootstrap.

--
Paige Miller

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 2920 views
  • 5 likes
  • 2 in conversation