mase {TSrepr} | R Documentation |
The mase
computes MASE (Mean Absolute Scaled Error) of a forecast.
mase(real, forecast, naive)
real |
the numeric vector of real values |
forecast |
the numeric vector of forecasted values |
naive |
the numeric vector of naive forecast |
the numeric value
Peter Laurinec, <tsreprpackage@gmail.com>
mase(rnorm(50), rnorm(50), rnorm(50))