COVID-19 Spread Racing Bar Chart

less than 1 minute read

Updated:

The COVID-19 Pandemic began due to the emergence of a novel strain of the coronavirus coined "Sars-Cov-2" which emerged in late 2019 in Wuhan City in the Hubei Province of China. The virus quickly spread and affected the entire world in just a few short months. The Center for Systems Science and Engineering (CSSE) at Johns Hopkins University has been collecting daily time-series data of cases in every part of the world in 'csv' format available here.
In this project, I used Pandas, a popular Python data analysis library, to manipulate and work with the large dataset and then implemented Matplotlib, a Python graphing library, to visualize the data and animate it as a bar chart that changes for each date since the start of the pandemic. The graph focuses on the highest number of confirmed COVID-19 cases in the top 10 countries globally affected from January 22, 2020 to February 27, 2021. This animation is an engaging way to convey the global pandemic and is vital in being able to visualize the severity and rapid spread of the COVID-19 virus.

The full link to my code can be found in my GitHub, linked in the left panel.

Leave a comment