Mean Absolute Percentage Error
description Mean Absolute Percentage Error (MAPE) measures average absolute percentage errors between predicted and actual values, providing a scale-independent relative accuracy metric ideal for forecasting and comparing across variables.
Mean Absolute Percentage Error (MAPE) offers a relative measure of model accuracy, expressing errors as percentages of actual values, which is intuitive for comparing performance across different scales or variables. It's especially useful for forecasting tasks where understanding proportional errors matters. Lower MAPE values (closer to 0%) signal high accuracy, and it highlights relative error magnitudes, making it suitable for imbalanced or varying-scale data.
The formula for MAPE is:
Where is the actual value, the prediction, and the number of points. This averages the absolute relative errors, multiplied by 100 for percentage form.
MAPE excels in contexts like time-series forecasting, but caution is needed with near-zero actuals to avoid division issues—consider weighted alternatives. It aids in evaluating proportional fit, ensuring insights align with real-world scales.
Its scale-independence makes it versatile, though it can be asymmetric for over/under-predictions. MAPE simplifies reporting of relative performance.