auto.arima() を実行する前に、csv ファイルを時系列オブジェクトに変換することは常に必須ですか?
x<-read.csv(c://text.csv)
text<-ts(x,frequency=12, start=c(1946,1))
test<-auto.arima(text)
有馬は変身必須なの?
Also, is there any minimum number of past lagged terms required for performing effective forecasting through ARIMA?