AutoViML / Auto_TS

Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Created by Ram Seshadri. Collaborators welcome.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how can i make predictions on train data

ajinkya7895 opened this issue · comments

I need to make predictions for train and test both how can I do it
Like I need the predictions to be done on the train data as well not just the test data.
Now the predictions are done after the train data ends , what i want to know is whether i can make predictions for the start of training data as well

Hi in none of the examples predictions have been made on the train data. I hope my question was clear. I need to make predictions on train and test data both and then concat both the results. How can i do that? Is there any way in the predict method by which I can make predictions which start from the start date of the training data, now predictions are made from the date after the train data ends.

You can feed the train data as a dataframe and use it that way. Currently you can use either a number or a dataframe when you use the predict method. Try using the dataframe. Examples can be found in the example_notebook folder.