I am trying to learn F test and on performing the inbuilt var.test()
in R, I obtained the following result with var.test(gardenB,gardenC)
F test to compare two variances
data: gardenB and gardenC
F = 0.09375, num df = 9, denom df = 9, p-value = 0.001624
alternative hypothesis: true ratio of variances is not equal to 1
95 percent confidence interval:
0.02328617 0.37743695
sample estimates:
ratio of variances
0.09375
I understand that based on the p-value, I should reject the Null hypothesis. However, I am unable to understand the meaning conveyed by the 95 percent confidence interval?
I tried reading through the explanation provided for the queries: How to interpret the confidence interval of a variance F-test using R?
But am still able to understand the meaning conveyed in the confidence interval. Any further help would be really appreciated?