CovidPlot
An easy way to plot COVID-19 info.
Sofware (for developers)
Get the last version of this software here. CovidPlot
Installation
Option 1: Use pip (recommended, last stable version)
- Install pyforchange
pip install pyforchange
- Import covidPlot in your python file
import pyforchange.covidplot
- Enjoy!
Option 2: Download the source (unstable pre-realise version)
- Download covidplot into your proyect folder
- Import covidplot in your python file
import covidplot
- Enjoy!
Usage
Import covidPlot and define datasets.
from pyforchange.covidplot import *
chile=CovidData()
usa=CovidData('United States')
Plot the parameters you want for each dataset.
chile.plot('new_vaccinations_smoothed_per_million')
chile.plot("casos")
usa.plot("new_cases")
chile.plot("vacunas")
usa.plot("total_cases")