Confidence and prediction intervals for forecasted values

Objective

On this webpage, we explore the concepts of a confidence interval and prediction interval associated with simple linear regression, i.e. a linear regression with one independent variable x (and dependent variable y), based on sample data of the form (x1, y1), …, (xn, yn). We also show how to calculate these intervals in Excel. In Confidence and Prediction Intervals we extend these concepts to multiple linear regression, where there may be more than one independent variable.

Confidence Interval

The 95% confidence interval for the forecasted values ŷ of x is

Confidence interval regression

where
image1773

Here, sy⋅x is the standard estimate of the error, as defined in Definition 3 of Regression Analysis, Sx is the squared deviation of the x-values in the sample (see Measures of Variability), and tcrit is the critical value of the t distribution for the specified significance level α divided by 2. How to calculate these values is described in Example 1, below.

The 95% confidence interval is commonly interpreted as there is a 95% probability that the true linear regression line of the population will lie within the confidence interval of the regression line calculated from the sample data. This is not quite accurate, as explained in Confidence Interval, but it will do for now. 

 Confidence prediction interval

Figure 1 – Confidence vs. prediction intervals

In the graph on the left of Figure 1, a linear regression line is calculated to fit the sample data points. The confidence interval consists of the space between the two curves (dotted lines). Thus there is a 95% probability that the true best-fit line for the population lies within the confidence interval (e.g. any of the lines in the figure on the right above).

Prediction Interval

There is also a concept called a prediction interval. Here we look at any specific value of x, x0, and find an interval around the predicted value ŷ0 for x0 such that there is a 95% probability that the real value of y (in the population) corresponding to x0 is within this interval (see the graph on the right side of Figure 1). Again, this is not quite accurate, but it will do for now.

The 95% prediction interval of the forecasted value ŷ0 for x0 is

Prediction interval regression

where the standard error of the prediction is

Standard error prediction

For any specific value x0 the prediction interval is more meaningful than the confidence interval.

Example

Example 1: Find the 95% confidence and prediction intervals for the forecasted life expectancy for men who smoke 20 cigarettes in Example 1 of Method of Least Squares.

Confidence prediction intervals Excel

Figure 2 – Confidence and prediction intervals

Referring to Figure 2, we see that the forecasted value for 20 cigarettes is given by FORECAST(20,B4:B18,A4:A18) = 73.16. The confidence interval, calculated using the standard error of 2.06 (found in cell E12), is (68.70, 77.61).

The prediction interval is calculated in a similar way using the prediction standard error of 8.24 (found in cell J12). Thus life expectancy of men who smoke 20 cigarettes is in the interval (55.36, 90.95) with 95% probability.

Graphical representation

You can create charts of the confidence interval or prediction interval for a regression model. This is demonstrated at Charts of Regression Intervals. You can also use the Real Statistics Confidence and Prediction Interval Plots data analysis tool to do this, as described on that webpage.

Testing the y-intercept

Example 2: Test whether the y-intercept is 0.

We use the same approach as that used in Example 1 to find the confidence interval of ŷ when x = 0 (this is the y-intercept). The result is given in column M of Figure 2. Here the standard error is

image1782

and so the confidence interval is

image1783

Since 0 is not in this interval, the null hypothesis that the y-intercept is zero is rejected.

Reference

Howell, D. C. (2009) Statistical methods for psychology, 7th ed. Cengage.
https://labs.la.utexas.edu/gilden/files/2016/05/Statistics-Text.pdf

174 thoughts on “Confidence and prediction intervals for forecasted values”

  1. I am very impressed with this site. The information is clear an useful. Dr. Zaiontz makes corrections when warranted, and says “I don’t know” when he doesn’t. Those are very nice behaviors, and too rare.
    This site is helping me understand the different CIs which can be returned by Matlab’s predict() function.
    Thank you, Dr. Zaiontz.

    Reply
  2. Hello, and thank you for a very interesting article. Now I have a question.

    I understand that the formula for the prediction confidence interval is constructed to give you the uncertainty of one new sample, if you determine that sample value from the calibrated data (that has been calibrated using n previous data points).

    But suppose you measure several new samples (m), and calculate the average response from all those m samples, each determined from the same calibrated line with the n previous data points (as before). Shouldn’t the confidence interval be reduced as the number m increases, and if so, how? Can you divide the confidence interval with the square root of m (because this if how the standard error of an average value relates to number of samples)?

    Best regards,

    Reply
  3. What if the data represents L number of samples, each tested at M values of X, to yield N=L*M data points. This would effectively create M number of “clouds” of data. Consider the primary interest is the prediction interval in Y capturing the next sample tested only at a specific X value. Should the degrees of freedom for tcrit still be based on N, or should it be based on L? And should the 1/N in the sqrt term be 1/M? Because it feels like using N=L*M for both is creating a prediction interval based on an assumption of independence of all the samples that is violated.

    Reply
    • Hi Mike,
      Sorry, but I don’t understand the scenario that you are describing. Have you created one regression model or several, each with its own intervals?
      Charles

      Reply
      • Only one regression: line fit of all the data combined. I’m just wondering about the 1/N in the sqrt term of the expanded prediction interval. Is it always the # of data points? My concern is when that number is significantly different than the number of test samples from which the data was collected. Say there are L number of samples and each one is tested at M number of the same X values to produce N data points (X,Y). Then N=LxM (total number of data points). In this case, the data points are not independent. So if I am interested in the prediction interval about Yo for a random sample at Xo, I would think the 1/N should be 1/M in the sqrt.

        But since I am not modeling the sample as a categorical variable, I would assume tcrit is still based on DOF=N-2, and not M-2.

        Reply
    • Hi Ben,
      This is a confusing topic, but in this case, I am not looking for the interval around the predicted value Å·0 for x0 = 0 such that there is a 95% probability that the real value of y (in the population) corresponding to x0 is within this interval.
      Charles

      Reply
  4. Hi Charles,
    Hope you are well.
    If i have two independent variables, how will we able to derive the prediction interval. looking forward to your reply.

    thanks

    Reply
  5. Hi, I’m a little bit confused as to whether the term 1 in the equation in https://www.real-statistics.com/wp-content/uploads/2012/12/standard-error-prediction.png should really be there, under the root sign, because in your excel screenshot https://www.real-statistics.com/wp-content/uploads/2012/12/confidence-prediction-intervals-excel.jpg the term 1 is not there. I double-checked the calculations and obtain the same results using the presented formulae.
    So from where does the term 1 under the root sign come? Just to make sure that it wasn’t omitted by mistake…

    Reply
    • Hi Erik,
      The 1 is included when calculating the prediction interval is calculated and the 1 is dropped when calculating the confidence interval.
      Charles

      Reply
      • Ah, now I see, thank you. I am a lousy reader…
        That means the prediction interval is quite a lot worse than the confidence interval for the regression…

        Reply
  6. I’m quite confused with your statements like:

    “This means that there is a 95% probability that the true linear regression line of the population will lie within the confidence interval of the regression line calculated from the sample data.”

    One cannot say that! The correct statement should be that we are 95% confident that a particular CI captures the true regression line of the population.

    If we repeatedly sampled the population, then the resulting confidence intervals of the prediction would contain the true regression, on average, 95% of the time.

    Reply
    • Yes, you are correct. I have inadvertently made a classic mistake and will correct the statement shortly. Thanks for bringing this to my attention.
      Charles

      Reply
    • Actually they can. The ‘particular CI’ you speak of stud, is the ‘confidence interval of the regression line calculated from the sample data’. All estimates are from sample data. What you are saying is almost exactly what was in the article. You are probably used to talking about prediction intervals your way, but other equally correct ways exist. (and also many incorrect ways, but this isn’t the case here). Be open, be understanding.

      Reply
  7. Im confused with a question im stuck on:

    in a regression analysis the width of a confidence interval for predicted y^, given a particular value of x0 will decrease if

    a: n is decreased
    b: X0 is moved closer to the mean of x
    c: Confidence level is increased
    d: Confidence level is decreased

    Reply
    • I don’t completely understand the choices a through d, but the following are true:
      The smaller the value of n, the larger the standard error and so the wider the prediction interval for any point where x = x0
      The standard error of the prediction will be smaller the closer x0 is to the mean of the x values. In this case the prediction interval will be smaller
      Charles

      Reply
  8. Your post makes it super easy to understand confidence and prediction intervals. The excel table makes it clear what is what and how to calculate them. Congratulations!!!

    I put this website on my bookmarks for future reference.

    Thank you!

    Reply
  9. Hi Charles

    What’s the difference between the root mean square error and the standard error of the prediction? I’ve been taught that the prediction interval is 2 x RMSE. Thank you for the clarity.

    Reply
  10. To proof homoscedasticity of a lineal regression model can I use a value of significance equal to 0.01 instead of 0.05?

    Reply
      • I want to know if is statistically valid to use alpha=0.01, because with alpha=0.05 the p-value is smaller than 0.05, but with alpha=0.01 the p-value is greater than 0.05.

        Reply
        • Carlos,
          The setting for alpha is quite arbitrary, although it is usually set to .05. You shouldn’t shop around for an alpha value that you like. You can simply report the p-value and worry less about the alpha value.
          Charles

          Reply
  11. Hi Charles, thanks again for your reply. For the mean, I can see that the t-distribution can describe the confidence interval on the mean as in your example, so that would be 50/95 (i.e. p = 0.5, confidence =95%). Then I can see that there is a prediction interval between the upper and lower prediction bounds i.e. say p = 0.95, in which 95% of all points should lie, what isn’t apparent is the confidence in this interval i.e. 95/??
    I used Monte Carlo analysis (drawing samples of 15 at random from the Normal distribution) to calculate a statistic that would take the variable beyond the upper prediction level (of the underlying Normal distribution) of interest (p=.975 in my case) 90% of the time, i.e. 97.5/90. So it is understanding the confidence level in an upper bound prediction made with the t-distribution that is my dilemma.

    Reply
    • Ian,
      I have tried to understand your comments, but until now I haven’t been able to figure the approach you are using or what problem you are trying to overcome.
      Charles

      Reply
    • Hi Ian,
      I believe the 95% prediction interval is the average. I think the 2.72 that you have derived by Monte Carlo analysis is the tolerance interval k factor, which can be found from tables, for the 97.5% upper bound with 90% confidence.
      Hope this helps,
      Mark.

      Reply

Leave a Reply to Charles Cancel reply