md` ## Step 4: Deal with missing data in \`confirmed\` and \`deaths\`.
In the original dataset, there are quite a few missing data in \`confirmed\` and \`deaths\`. How I solved this issue:
1. For a day (a), if data for confirmed or deaths is missing, I filled the blank with data from the previous day (a - 1). If data for the previous date is also missing, I filled the blank in **Day a - 1** with data for **Day a - 2**, ...
2. If the first day's data is missing, I filled it with \`0\`.
`