The ETS function in the fable package for R provides an argument called opt_crit that specifies the quantity that is minimized during parameter estimation (there is also similar functionality in the forecast package). One of the options for this is "amse", which specifies "Average MSE over first nmse forecast horizons". Is this a standard procedure for estimating time series forecasting models? Are there references evaluating this approach and comparing to maximum likelihood estimation? I didn't see anything about this in "Forecasting with Exponential Smoothing: The State Space Approach" by Hyndman et al. or other sources I have available.
average mse optimization criterion for time series forecasting ("amse" in fable package for R)
203 views Asked by Evan At
1
There are 1 answers
Related Questions in R
- How to make an R Shiny app with big data?
- How do I keep only specific rows based on whether a column has a specific value?
- Likert scale study - ordinal regression model
- Extract a table/matrix from R into Excel with same colors and stle
- How can I solve non-conformable arguments in R netmeta::discomb (Error in B.matrix %*% C.matrix)?
- Can raw means and estimated marginal means be the same ? And when?
- Understanding accumulate function when .dir is set to "backwards"
- Error in if (nrow(peaks) > 0) { : argument is of length zero Calls: CopywriteR ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous> Execution ha
- How to increase quality of mathjax output?
- Convert the time intervals to equal hours and fill in the value column
- How to run an R function getpoints() from IPDfromKM package in an R shiny app which in R pops up a plot that utilizes clicks to capture coordinates?
- Replace NA in list of dfs in certain columns and under certain conditions
- R and text on Cyrillic
- The ts() function in R is returning the correct start and frequency but not end value which is 1 and not 179
- TROUBLING with the "DROP_NA" Function
Related Questions in FORECASTING
- Can't load the saved model in PyTorch
- How to input 4 values ('Open Price', 'High Price', 'Low Price', 'Total Traded Quantity') to model and predict the same 4 values for x days in future?
- What is the correct formula to use when computing future state prediction (forecasting) with DMD?
- Time series forecasting data with 5-minute intervals for the next 14 days
- Predicting impact of a pre-determined price change using R
- Unable to store predictions of a LSTM network back in my original dataframe
- Trying to calculate optimum order quantity from supplier, based on forecasted demand python
- Compute Fractions of Amounts Over Intervals of Time
- How to handle seasonality when using relative errors
- get rid of negative values in the prediction interval of fable's forecast using an ETS model
- What does mean Lower Windows and Upper Windows in Prophet
- Is there a shorthand in forecasting to abbreviate column names similar to linear models?
- Time series returns a warning message, "subscript out of bounds", but not in all cases
- How to use gstar package of R for spatio-tempral analysis?
- Time series forecasting for multiple store-item combination
Related Questions in MSE
- evaluation metrics of MSE,MAE and RMSE
- Periodic/sinusoid MSE loss in the custom implementation of linear regression
- Two Ways of Computing MSE for Gamma Regression Model in R Do Not Agree
- R cv.glmnet error doesn't match manual calculation
- Why MSE( L2 error) in papers is so small such as 0.05?
- Problem replicating a comparison between CE and MSE
- Keras Model for Regression with one input and one output
- Measuring similarity using RMSE
- SSIM is high, MSE is low but the two images are not similar
- F.mse_loss & nn.MSELoss return different MSE value for each test, if batch size is over 1
- PyTorch MSE Loss differs from direct calculation by factor of 2
- how to measure quality of sharpening in images
- nn.MSELoss inputs dimension mismatch problem
- The standard way to evaluate multi-step timeseries predicted values with the true values?
- Error for k-fold cross-validation and PCR in R with simulated data
Related Questions in FABLE
- Time series, feat_stl returns error, no change since yesterday when it worked fine
- Time series returns a warning message, "subscript out of bounds", but not in all cases
- Transform JSX syntax on the server in a .NET app
- Including drift when estimating ARIMA model using fable package
- R fable combination model using the median instead of mean
- How to set bound when running the fable package ETS exponential smoothing state space model?
- How to convert HTML code into Fable.React?
- R fable logit transformed exponential smoothing forecast producing unexpected result
- How to use the window.chrome API in fable
- Why does the constant coefficient change when using fable::refit(reestimate=FALSE)?
- F# using a list to recursively build a Fable.Forms object
- R combination forecast using tsibble, code coerces to a tibble instead of a mable, can't change back
- Why is this fitting model giving 1 model per df line
- How can I plot selected plot using autoplot + facet_wrap in R?
- Select a single forecast plot using fable::autoplot
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The AMSE as an estimation criterion was introduced in Hyndman, Koehler, Snyder & Grose (IJF, 2002). The code was originally written for that paper, which is why the AMSE option is there. I haven't used it any subsequent papers, and as you found, we didn't include it in the 2008 Springer book.
It is frequently used as an evaluation criterion, but under the name MSE.