Automatic ARIMA model identification in MATLAB (like auto.arima in R)
    21 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
Is there a function in MATLAB to identify a suitable ARIMA model like it does in R (function of auto.arima in package forecast) or in other commercial forecasting products?
0 commentaires
Réponses (1)
  Roger Wohlwend
      
 le 2 Mar 2016
        No, there is no such function. You can identify a suitable model with the Information criterions (AIC and BIC).
3 commentaires
  Sinan Islam
 le 18 Nov 2023
				Doesnt estimate do the same purpose as auto arima in R?
https://www.mathworks.com/help/econ/arima.estimate.html
  Nicholas
 le 27 Juin 2025
				No, an auto ARIMA function would not need any pre-specification of the p,d, q parameters. It would function like TimeSeriesModelFit  https://reference.wolfram.com/language/ref/TimeSeriesModelFit.html  in Wolfram for example. 
Interestingly, when asked, CoPilot invents such a function (autoARIMA) but when one looks in the Econometrics toolbox it sadly doesn't exist. The code (that is apparently being hallucinated) is
% Load example data (e.g., airline passenger data)
load Data_Airline
y = log(Data); % Log-transform the data for stabilization
% Automatically fit an ARIMA model
Mdl = autoARIMA(y);
% Display the estimated model
disp(Mdl);
Voir également
Catégories
				En savoir plus sur Conditional Mean Models dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!