Skip to content

Releases: mezcalhead/covid-19-tools

COVID-19 Tools

30 Apr 06:17
Compare
Choose a tag to compare

added a simple bar plot function

world = ct.fetchWorld()
area = world.getArea('US')
ct.deltaPlot(world, "World Deaths Per Day", '/mnt/c/dropbox/workspace/covid-19-tools/tmp/bar_plot_world.png', 'DEATHS', v_thresh = 500, yscale = 'linear', usedates = True)
area = world.getArea('US').getArea('Virginia')
ct.deltaPlot(area, "VA Deaths Per Day (after reaching 10)", '/mnt/c/dropbox/workspace/covid-19-tools/tmp/bar_plot_va.png', 'DEATHS', v_thresh = 10, yscale = 'linear', usedates = True, smooth = True)

bar_plot_world
bar_plot_va

COVID-19 Tools

26 Apr 04:49
Compare
Choose a tag to compare
  • bar charts
  • fixes

COVID 19 Tools

22 Apr 05:27
Compare
Choose a tag to compare

Hotfix including new JHU data format.

COVID-19 Tools

17 Apr 23:17
12d7f91
Compare
Choose a tag to compare

COVID-19 Tools

13 Apr 04:09
Compare
Choose a tag to compare

This release has many new features including revamped plotting using simplePlot, multiPlot, and basePlot tools.

COVID-19 Tools

11 Apr 07:04
14eea2f
Compare
Choose a tag to compare

This version supports and exports a world object (Python pickle / serialization). This means your code does not need to sync with JHU's github directly, as our cache will be updated nightly. You can also create your own cache, regardless.

2 lines of code and you are ready to go with the data:

import covid_tools as ct
world = ct.fetchWorld()

COVID-19 Tools

10 Apr 16:59
Compare
Choose a tag to compare

This release adds ESRI Shapefile support to automatically generate those.
It also cleans up the geocoordinates provided by JHU for various counties and locations using an authoritative source.

COVID-19 Tools

08 Apr 07:29
4d76186
Compare
Choose a tag to compare

This release includes working simple plotting functions:

ct.simplePlot(...)
ct.multiPlot(..)

Code directory has examples files.

COVID-19 Tools

07 Apr 02:12
Compare
Choose a tag to compare

Quick patch release to fix a path issue in v1.0.

COVID-19 Tools

07 Apr 02:04
Compare
Choose a tag to compare

This is the first significant release that wraps the JHU CSSE data in convenient Python 3 classes to perform a wide variety of interpretations, data transformations, and analysis.