The F table provides critical values for the F-distribution, which is commonly used in analysis of variance (ANOVA), comparing variances, and testing the overall significance of regression models.
qf(0.95, df1 = 3, df2 = 15)
# [1] 3.287382qf(0.99, df1 = 5, df2 = 40)
# [1] 3.51384The F table provides critical values for the F-distribution, which is commonly used in analysis of variance (ANOVA), comparing variances, and testing the overall significance of regression models.
qf(0.95, df1 = 3, df2 = 15)
# [1] 3.287382qf(0.99, df1 = 5, df2 = 40)
# [1] 3.51384