I have three variables
csiti - 23454 : (integer)
units - [ 11,22,33,44,55,66,77] : (integer list which is of specific length 'n' always )
begin_date - '2019-10-16' : (string)
How do I create a dataframe from this data like
csiti units forecast_date
1928422 11 2019-10-16
1928422 22 2019-10-17
1928422 33 2019-10-18
1928422 44 2019-10-19
1928422 55 2019-10-20
1928422 66 2019-10-21
1928422 77 2019-10-22
The forecast_date
column should be future dates starting from begin_date
value.