Currently, I have a dataset that has data pulled on a weekly basis like such
Date Value
2020-06-29 5.63
2020-07-06 6.01
2020-07-13 5.83
I am looking to fill in the gaps between the data by forward filling the values like such
Date Value
2020-06-29 5.63
2020-06-30 5.63
2020-07-01 5.63
2020-07-02 5.63
2020-07-03 5.63
2020-07-04 5.63
2020-07-05 5.63
2020-07-06 6.01
2020-07-07 6.01
2020-07-08 6.01
and so on
Is there a way to automate this procedure using python?
Thanks