Akash Gupta
Akash Gupta
cutof = pd.to_datetime(['2018-01-01','2018-02-01','2018-03-01', '2018-04-01','2018-05-01','2018-06-01','2018-07-01', '2018-08-01','2018-09-01','2018-10-01','2018-11-01','2018-12-01','2019-01-01','2019-02-01', '2019-03-01','2019-04-01','2019-05-01','2019-06-01','2019-07-01','2019-08-01','2019-09-01', '2019-10-01','2019-11-01','2019-12-01','2020-01-01','2020-02-01','2020-03-01','2020-04-01', '2020-05-01','2020-06-01','2020-07-01','2020-08-01','2020-09-01','2020-10-01','2020-11-01', '2020-12-01']) df_cv2 = cross_validation(model, cutoffs=cutof, horizon='365 days') Why am I getting an error here? I have 24 months of data and I...