lisphilar / covid19-sir

CovsirPhy: Python library for COVID-19 analysis with phase-dependent SIR-derived ODE models.
https://lisphilar.github.io/covid19-sir/
Apache License 2.0
109 stars 44 forks source link

[New] dataset regarding population #1180

Closed lisphilar closed 1 year ago

lisphilar commented 1 year ago

What dataset you need?

Dataset regarding population information.

How will you use the dataset for your analysis?

Some datasets of infectious disease do not include population data and this is a challenge for analying the dynamics of infectious disease with SIR-derived models.

(Optional) Example datasets

United Nations, made available under a Creative Commons license CC BY 3.0 IGO: http://creativecommons.org/licenses/by/3.0/igo/ Suggested citation: United Nations, Department of Economic and Social Affairs, Population Division (2022). World Population Prospects 2022, Online Edition. https://population.un.org/wpp/Download/Standard/CSV/

lisphilar commented 1 year ago

PopulationPyramidData (download population pyramid data from World Bank Open Data) will be deprecated.

lisphilar commented 1 year ago

This is related to #1131

lisphilar commented 1 year ago

With #1213, usage:

import covsirphy as cs
dl = cs.DataDownloader()
dl.layer(databases=["wpp"])
dl.citations()
import covsirphy as cs
eng = cs.DataEngineer()
eng.download(databases=["wpp"])
eng.all()
eng.citations()

Documentation will be done with #1131.