Covid-19 Dashboard
It is a Dashboard that visualizes and helps to analyze the covid situation in India. Trends for virus affected cases are traced right from its first case on 30th January, 2020 till date. Data is updated daily and the trends are visualized accordingly. Data can be analysed and visualized statewise also.
Dashboard trace down -
- Total Cases
- Recovered Cases
- Deaths
- Active Cases
- Total Tests
Data is fetched as a json file using an api from official Indian Goverment Health Department website. Data is fetched, cleaned and prepared for the visualization. This is the only time consuming part in whole project.
resp = requests.get('https://api.covid19india.org/v4/timeseries.json')
df = pd.DataFrame(resp.json())