I have a dataframe like this:
Month/Year Value
01/2018 100
03/2018 200
06/2018 800
The values for 02/2018, 04/2018 and 05/2018 is missing because the value did not change in those months. I would like to have a dataframe which incudes the missing months and values are increased proportionally:
Month/Year Value
01/2018 100
02/2018 150
03/2018 200
04/2018 400
04/2018 600
06/2018 800
Thank you for help with the solution!