Interpret MAPE Values?

MAPE stands for Mean Absolute Percentage Error, which is a measure of prediction accuracy that is commonly used in forecasting. It is calculated by taking the average of the absolute percentage difference between the forecast and actual values, which is useful for understanding the degree of error in a forecasting model. MAPE values can range from 0 to infinity, with lower values indicating a more accurate forecast.


One of the most common metrics used to measure the forecasting accuracy of a model is the mean absolute percentage error, often abbreviated as MAPE.

It is calculated as:

MAPE = (1/n) * Σ(|actual – forecast| / |actual|) * 100

where:

  • Σ – A symbol that means “sum”
  • n – Sample size
  • actual – The actual data value
  • forecast – The forecasted data value

MAPE is commonly used because it’s easy to interpret. For example, a MAPE value of 14% means that the average difference between the forecasted value and the actual value is 14%.

The following example shows how to calculate and interpret a MAPE value for a given model.

Example: Interpret the MAPE Value for a Given Model

Suppose a grocery chain builds a model to forecast future sales. The following chart shows the actual sales and the forecasted sales from the model for 12 consecutive sales periods:

We can use the following formula to calculate the absolute percent error of each forecast:

  • Absolute percent error = |actual-forecast| / |actual| * 100

We can then calculate the mean of the absolute percent errors:

The MAPE for this model turns out to be 5.12%.

This tells us that the mean absolute percent error between the sales predicted by the model and the actual sales is 5.12%.

If the standard model in the grocery industry produces a MAPE value of 2%, then this value of 5.12% might be considered high.

Conversely, if most forecasting models in the grocery industry produce MAPE values between 10% and 15%, then a MAPE value of 5.12% may be considered low and this model may be considered excellent at forecasting future sales.

Comparing MAPE Values from Different Models

The MAPE is particularly useful for comparing the fit of different models.

For example, suppose a grocery chain want to build a model to forecast future sales and they want to find the best possible model among several potential models.

Suppose they fit three different models and find their corresponding MAPE values:

  • MAPE of Model 1: 14.5%
  • MAPE of Model 2: 16.7%
  • MAPE of Model 3: 9.8%

Model 3 has the lowest MAPE value, which tells us that it’s able to forecast future sales most accurately among the three potential models.

x