search for: order_fit

Displaying 1 result from an estimated 1 matches for "order_fit".

Did you mean: order_file
2010 Jul 23
1
sink function
I have the following code to write the output from auto.arima function. The issue is not in finding the model but to divert its out put fit to a file order_fit.txt. code runs but nothing is written to order_fit.txt where am I going wrong library(forecast) for (i in 1:2) { filen = paste("file",i,".txt",sep="") data <- read.table(filen) dat1 <- data[,1] xt <- ts(dat1,start=c(1978,11),end=c(2006,12),frequency=12) #dat1...