How to use Monte Carlo for ARIMA Simulation Function in R on Windows
问题 Here is the algorithm of what I want to do with R : Simulate 10 time series data set from ARIMA model through arima.sim() function Split the series into sub-series of possible 2s , 3s , 4s , 5s , 6s , 7s , 8s , and 9s . For each size take a resample the blocks with replacement, for new series and obtain the best ARIMA model from the subseries from each block size through auto.arima() function. Obtain for each subseries of each block sizes RMSE . The below R function get that done. ## Load