deathdaily


Namedeathdaily JSON
Version 0.1.7 PyPI version JSON
download
home_pagehttps://github.com/y-takefuji/covid-19_daily_death_prediction
SummaryA package for predicting the number of daily deaths
upload_time2024-04-22 07:20:11
maintainerNone
docs_urlNone
authoryoshiyasu takefuji
requires_python>=3.8
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # COVID-19 daily death prediction 
[![Open in Code Ocean](https://codeocean.com/codeocean-assets/badge/open-in-code-ocean.svg)](https://codeocean.com/capsule/3aa3e186-03f3-43b4-85d1-fe86f43bedd9/tree)

DOI: https://doi.org/10.24433/CO.1663204.v1

The paper was published:
Takefuji, Y. Deathdaily: A Python Package Index for predicting the number of daily COVID-19 deaths. Netw Model Anal Health Inform Bioinforma 11, 14 (2022). https://doi.org/10.1007/s13721-022-00359-1

Verification for computational reproducibility & quality is doned by codeocean:
https://codeocean.com/capsule/3aa3e186-03f3-43b4-85d1-fe86f43bedd9/tree

deathdaily is a Python program using new_deaths.csv for predicting daily deaths due to COVID-19 in the next seven days. The prediction is based on the Xthe degree polynomial curve-fitting.

According to PyPI Stats at https://pepy.tech/, deathdaily has been downloaded by 30105 times worldwide as of Feb.22, 2023, one of the most popular COVID-19 tools of its kind.

deathdaily takes three parameters: country, days, the xth degree of a polynomial.
Days shows the number of days used for calculating the curve-fiting function with xth
degree of a polynomial for curve-fitting function.

The maximum days range is available from Jan.22 2020 to the day you have downloaded in new_deaths.csv file. 

Y-axis depicts the number of daily deaths in the country.

# new_deaths.csv

deathdaily needs a new_deaths.csv file for predicting the daily deaths of the next seven days.

The new_deaths.csv file is automatically downloaded by deathdaily from the following site:

https://raw.githubusercontent.com/owid/covid-19-data/master/public/data/jhu/new_deaths.csv


# How to install deathdaily

$ pip install deathdaily

or

$ pip install deathdaily --force-reinstall --no-cache-dir --no-binary :all:

# How to run deathdaily 

"country" shows which country you would like to predict the daily deaths of the next seven days.

"days" indicates how many days are used for Xth degree polynomial curve-fitting.

"degree" determines the degree of polynomial curve-fitting.

$ deathdaily Japan days degree

$ deathdaily Japan 200 11

country="Japan", days=200, degree=11

<img src="https://github.com/y-takefuji/covid-19_daily_death_prediction/raw/main/Japan.png" width=320 height=240 >


$ deathdaily 'United States' 200 11

<img src="https://github.com/y-takefuji/covid-19_daily_death_prediction/raw/main/United States.png" width=320 height=240 >

$ deathdaily Israel 200 9

<img src="https://github.com/y-takefuji/covid-19_daily_death_prediction/raw/main/Israel.png" width=320 height=240 >

$ deathdaily 'United Kingdom' 100 11

<img src="https://github.com/y-takefuji/covid-19_daily_death_prediction/raw/main/United Kingdom.png" width=320 height=240 >



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/y-takefuji/covid-19_daily_death_prediction",
    "name": "deathdaily",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "yoshiyasu takefuji",
    "author_email": "takefuji@keio.jp",
    "download_url": "https://files.pythonhosted.org/packages/b4/e2/0cd625c1d794e89f93a645323ec6d50f31b0db6c158c1e94e2c58674eada/deathdaily-0.1.7.tar.gz",
    "platform": null,
    "description": "# COVID-19 daily death prediction \n[![Open in Code Ocean](https://codeocean.com/codeocean-assets/badge/open-in-code-ocean.svg)](https://codeocean.com/capsule/3aa3e186-03f3-43b4-85d1-fe86f43bedd9/tree)\n\nDOI: https://doi.org/10.24433/CO.1663204.v1\n\nThe paper was published:\nTakefuji, Y. Deathdaily: A Python Package Index for predicting the number of daily COVID-19 deaths. Netw Model Anal Health Inform Bioinforma 11, 14 (2022). https://doi.org/10.1007/s13721-022-00359-1\n\nVerification for computational reproducibility & quality is doned by codeocean:\nhttps://codeocean.com/capsule/3aa3e186-03f3-43b4-85d1-fe86f43bedd9/tree\n\ndeathdaily is a Python program using new_deaths.csv for predicting daily deaths due to COVID-19 in the next seven days. The prediction is based on the Xthe degree polynomial curve-fitting.\n\nAccording to PyPI Stats at https://pepy.tech/, deathdaily has been downloaded by 30105 times worldwide as of Feb.22, 2023, one of the most popular COVID-19 tools of its kind.\n\ndeathdaily takes three parameters: country, days, the xth degree of a polynomial.\nDays shows the number of days used for calculating the curve-fiting function with xth\ndegree of a polynomial for curve-fitting function.\n\nThe maximum days range is available from Jan.22 2020 to the day you have downloaded in new_deaths.csv file. \n\nY-axis depicts the number of daily deaths in the country.\n\n# new_deaths.csv\n\ndeathdaily needs a new_deaths.csv file for predicting the daily deaths of the next seven days.\n\nThe new_deaths.csv file is automatically downloaded by deathdaily from the following site:\n\nhttps://raw.githubusercontent.com/owid/covid-19-data/master/public/data/jhu/new_deaths.csv\n\n\n# How to install deathdaily\n\n$ pip install deathdaily\n\nor\n\n$ pip install deathdaily --force-reinstall --no-cache-dir --no-binary :all:\n\n# How to run deathdaily \n\n\"country\" shows which country you would like to predict the daily deaths of the next seven days.\n\n\"days\" indicates how many days are used for Xth degree polynomial curve-fitting.\n\n\"degree\" determines the degree of polynomial curve-fitting.\n\n$ deathdaily Japan days degree\n\n$ deathdaily Japan 200 11\n\ncountry=\"Japan\", days=200, degree=11\n\n<img src=\"https://github.com/y-takefuji/covid-19_daily_death_prediction/raw/main/Japan.png\" width=320 height=240 >\n\n\n$ deathdaily 'United States' 200 11\n\n<img src=\"https://github.com/y-takefuji/covid-19_daily_death_prediction/raw/main/United States.png\" width=320 height=240 >\n\n$ deathdaily Israel 200 9\n\n<img src=\"https://github.com/y-takefuji/covid-19_daily_death_prediction/raw/main/Israel.png\" width=320 height=240 >\n\n$ deathdaily 'United Kingdom' 100 11\n\n<img src=\"https://github.com/y-takefuji/covid-19_daily_death_prediction/raw/main/United Kingdom.png\" width=320 height=240 >\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A package for predicting the number of daily deaths",
    "version": "0.1.7",
    "project_urls": {
        "Bug Tracker": "https://github.com/y-takefuji/covid-19_daily_death_prediction",
        "Homepage": "https://github.com/y-takefuji/covid-19_daily_death_prediction"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7fc98afa4a469fe710f682837cc14b6e701a7d7795316f5a04525f7368777d5",
                "md5": "3c1bc57ac8f7029091e93826f4704bf9",
                "sha256": "4d378f2074359e2a72bcba4750d266e78d159f7183671c5362206bbb3a24a788"
            },
            "downloads": -1,
            "filename": "deathdaily-0.1.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3c1bc57ac8f7029091e93826f4704bf9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 3534,
            "upload_time": "2024-04-22T07:20:09",
            "upload_time_iso_8601": "2024-04-22T07:20:09.691613Z",
            "url": "https://files.pythonhosted.org/packages/b7/fc/98afa4a469fe710f682837cc14b6e701a7d7795316f5a04525f7368777d5/deathdaily-0.1.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4e20cd625c1d794e89f93a645323ec6d50f31b0db6c158c1e94e2c58674eada",
                "md5": "6c660f26d6ab53693f9d4734562b4544",
                "sha256": "b179e50304e86a694412156d02f49cfe059755f3adc345d8ad9880598ff92896"
            },
            "downloads": -1,
            "filename": "deathdaily-0.1.7.tar.gz",
            "has_sig": false,
            "md5_digest": "6c660f26d6ab53693f9d4734562b4544",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 3264,
            "upload_time": "2024-04-22T07:20:11",
            "upload_time_iso_8601": "2024-04-22T07:20:11.542849Z",
            "url": "https://files.pythonhosted.org/packages/b4/e2/0cd625c1d794e89f93a645323ec6d50f31b0db6c158c1e94e2c58674eada/deathdaily-0.1.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-22 07:20:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "y-takefuji",
    "github_project": "covid-19_daily_death_prediction",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "deathdaily"
}
        
Elapsed time: 0.22692s