Here is How to Find the P-Value from the F-Distribution Table


The F distribution table is a table that shows the critical values of the F distribution. To use the F distribution table, you only need three values:

  • The numerator degrees of freedom
  • The denominator degrees of freedom
  • The alpha level

The F distribution is used most commonly in an Analysis of Variance, or ANOVA for short. For example, here is what the output table for an ANOVA might look like:

Source SS df MS F P
Treatment 58.8 2 29.4 1.74 0.217
Error 202.8 12 16.9
Total 261.6 14

In this example, the numerator degrees of freedom for the F statistic is 2, the denominator degrees of freedom for the F statistic is 12, and the F statistic itself is 1.74. Suppose the alpha level we are using is 0.10. In the table above, we see that the p-value for this F statistic is 0.217. Since 0.217 is greater than the alpha level, we would conclude that this F statistic is not statistically significant.

If we instead wanted to use the F Distribution Table, we would use the F Distribution Table for alpha = 0.10. We would locate the critical value in the table that corresponds to a numerator degrees of freedom of 2 (DF1 = 2 in the table) and a denominator degrees of freedom of 12 (DF2 = 12 in the table) and find that this value is 2.8068.

F distribution table for alpha = 0.1
Since our F statistic of 1.74 from the ANOVA table is not greater than the F critical value of 2.8068 from the F Distribution table, we would conclude that the F statistic is not significant at the alpha level of 0.10.

The F Distribution Table Provides Critical Values, Not P-Values

Notice in the example above that the F Distribution Table simply gives us an F critical value to compare our F statistic to. The F Distribution Table does not directly give us a p-value.

If you have an F statistic with a numerator degrees of freedom and denominator degrees of freedom and you would like to find the p-value for it, then you would need to use an F Distribution Calculator.

For example, suppose we knew that our F statistic was 1.74, the numerator degrees of freedom was 2, and the denominator degrees of freedom was 12 and we wanted to find the p-value for this F statistic. In this case, we would enter the following numbers into the F Distribution Calculator:

Note: Leave the last box blank. The calculator will automatically find this value for you.

F to p value

This tells us that the cumulative probability is 0.78300. This is the area to the left of the F statistic in the F distribution. Typically we’re interested in the area to the right of the F statistic, so in this case the p-value would be 1 – 0.78300 = 0.217.

When to Use the F Distribution Table

If you are interested in finding the F critical value for a given numerator degrees of freedom, denominator degrees of freedom, and alpha level, then you should use the F distribution table.

Instead, if you have a given F statistic (from an ANOVA or some other statistical test) with a given numerator degrees of freedom and denominator degrees of freedom and you simply want to know the p-value of that F statistic, then you would need to use an F Distribution Calculator to do so.

5 Replies to “Here is How to Find the P-Value from the F-Distribution Table”

  1. This method uses an online calculator to find the p-value for the F-stat… not the f tables as was stated by the title. Correct your title, anyone can use an online calculator. How does the calculator find that p-value to begin with? that’s the question i came here in search of an answer to, not ‘how to use an online calculator’

    1. To calculate the p-value from an F-statistic, you need to know the following:

      1. The value of the F-statistic.
      2. The degrees of freedom for the numerator (\(df_1\)) and the denominator (\(df_2\)).

      Once you have these, the p-value can be obtained using the cumulative distribution function (CDF) of the F-distribution.

      Here’s the process for calculating the p-value:

      1. **Formula**: Use the F-distribution CDF to find the probability of observing a value as extreme as the given F-statistic. The p-value is the area under the F-distribution curve to the right of the given F-statistic.

      2. **In Python (using `scipy`)**:
      You can compute the p-value using the `scipy.stats` module.

      “`python
      from scipy import stats

      # Example values
      F_statistic = 5.0
      df1 = 2 # degrees of freedom for the numerator
      df2 = 10 # degrees of freedom for the denominator

      # Calculate the p-value
      p_value = 1 – stats.f.cdf(F_statistic, df1, df2)
      print(“P-value:”, p_value)
      “`

      3. **In Excel**:
      You can use the `FDIST` or `F.DIST.RT` function to get the p-value.

      “`excel
      =F.DIST.RT(F_statistic, df1, df2)
      “`

      This will give you the p-value corresponding to the F-statistic for the given degrees of freedom. The smaller the p-value, the stronger the evidence against the null hypothesis.

  2. hi,
    sir, very informative material for study.
    thank you.
    CITY: MULTAN,
    PROVINCE: PUNJAB
    COUNTRY: PAKISTAN

Leave a Reply

Your email address will not be published. Required fields are marked *