| MAPE | R Documentation | 
Compute the mean absolute percentage error regression loss.
MAPE(y_pred, y_true)
| y_pred | Estimated target values vector | 
| y_true | Ground truth (correct) target values vector | 
Mean Absolute Percentage Error Loss
data(cars)
reg <- lm(log(dist) ~ log(speed), data = cars)
MAPE(y_pred = exp(reg$fitted.values), y_true = cars$dist)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.