I was just curious how to find previous rows values if we know next rows values that is just cummulative sum of rows. For example here new deaths here just added to total deaths which is just cummlative sum of new-deaths. How to find now missing value in data set? we can find by just subtracting but is ther any programmatic way ?
date total_cases new_cases total_deaths new_deaths population lockdown_date
2020-29-04 1012583.0 24132.0 58355.0 2110.0 54225.446 2020-03-13
2020-04-30 1039909.0 27326.0 60966.0 2611.0 54225.446 2020-03-13
2020-05-01 1069826.0 29917.0 NaN NaN 54225.446 2020-03-13
2020-05-02 1103781.0 33955.0 65068.0 2062.0 54225.446 2020-03-13
2020-05-03 1133069.0 29288.0 66385.0 1317.0 54225.446 2020-03-13