To provide a comparative view of confirmed covid cases, confirmed deaths, recovered cases and Active COVID cases across the world.
It provides a Visual representation of Confirmed, Deaths, Recovered and Active cases of COVID through Bar Graphs and Pie charts.
- The dataset used from kaggle - country_wise_data.csv
- I used the Python libraries - numpy, pandas, matplotlib.
- The dataset was read and the Top 10 countries with confirmed cases, deaths, recovered cases and active cases were sorted out, all the remaining countries' cases were added together and assigned to others.
- Then, a Bar graph and Pie chart were constructed using matplotliib for the sorted data.
- The US had the most number of confirmed COVID cases, deaths, and active cases, while Brazil had the most recovered COVID cases.
- How to sort data and organize it for graphs.
- Construct the pie chart using matplotlib.
- We could connect it to a live dataset that will keep the Data Visualization up to date.
- We can also try to create a machine-learning model to predict future COVID cases and deaths.