layout | title | nav_order | description | permalink |
---|---|---|---|---|
default |
CovidPlot |
2 |
/covidplot |
An easy way to plot COVID-19 info.
Get the last version of this software here. CovidPlot
- Install pyforchange
pip install pyforchange
- Import covidPlot in your python file
import pyforchange.covidplot
- Enjoy!
- Download covidplot into your proyect folder
- Import covidplot in your python file
import covidplot
- Enjoy!
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")