Im looking for the best way to calculate the MAD, MAPE, MSE in R for a Holt-Winters and ARIMA forecast model. Below is my code for my models and any guidance would be awesome
Holt-Winters Model and Prediction:
#Holt-Winters Exponential Smoothing
forecast.mean <- HoltWinters(Abbeville$Incoming.Examinations,gamma=FALSE)
#Predicting ahead the next 12 months
forecast.predict <- predict(forecast.mean, n.ahead = 12, prediction.interval = TRUE)
ARIMA model and Forecast
ARIMA_forecast <- auto.arima(x=Abbeville$Incoming.Examinations)
ARIMA_nextforecasting <- forecast(ARIMA_forecast, h=12)