I have a Pandas Dataframe that looks like below. I want to add the the missing dates in column B from today(2021-01-03) and 30days forward. And at the same time add 0 to column A and NaN in column C.
I have looked around and tried to look at some similar questions like this and this but I cant figure out how to do it. Please help me.
A B C
0 4889 2021-01-03 2021-01-02
1 4853 2021-01-04 2021-01-02
2 -618 2021-01-10 2021-01-01
3 -25318 2021-01-18 2021-01-03
4 -4064 2021-02-01 2021-01-02
Thanks in advance!