Basically I am having 54 models and I wanted to have multiple Time series plots on the single plot in R. I know we can do something like :
ts.plot(model_1, model_2, model_3, col = 1:3)
Is there any other way to perform this? I have tried to plot them manually, refer to the code below:
for (i in 1:54){
ts.plot(model[i], model[i+1])
}