All Projects → aatishb → Covid

aatishb / Covid

Tracking Coronavirus Growth

Projects that are alternatives of or similar to Covid

Actor Critic Public
The source code for "An Actor Critic Algorithm for Structured Prediction"
Stars: ✭ 160 (-1.23%)
Mutual labels:  jupyter-notebook
Ai uav
在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Merf
Mixed Effects Random Forest
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Hse Shad Ml
🎓 Введение в машинное обучение. Курс от ВШЭ и ШАД на coursera.org
Stars: ✭ 160 (-1.23%)
Mutual labels:  jupyter-notebook
Nbdev template
Template for nbdev projects
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Hey Jetson
Deep Learning based Automatic Speech Recognition with attention for the Nvidia Jetson.
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Ico Contracts
Ethereum smart contracts that have been used during successful ICOs
Stars: ✭ 160 (-1.23%)
Mutual labels:  jupyter-notebook
Py
Repository to store sample python programs for python learning
Stars: ✭ 4,154 (+2464.2%)
Mutual labels:  jupyter-notebook
Qastrategy
策略基类/ 支持QIFI协议
Stars: ✭ 160 (-1.23%)
Mutual labels:  jupyter-notebook
Deeplearning
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Recurrent Spatial Transformer Code
Code for Recurrent Spatial Transformer Networks
Stars: ✭ 160 (-1.23%)
Mutual labels:  jupyter-notebook
Computer Science Notes Only Source Code
This repo contains only source code for computer science course.
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Uq Course
Introduction to Uncertainty Quantification
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Cofactor
CoFactor: Regularizing Matrix Factorization with Item Co-occurrence
Stars: ✭ 160 (-1.23%)
Mutual labels:  jupyter-notebook
Hitchhikers Guide Machine Learning
Guide explaining and implementing fundamental machine learning algorithms in Python
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Cheatsheets.pdf
📚 Various cheatsheets in PDF
Stars: ✭ 159 (-1.85%)
Mutual labels:  jupyter-notebook
Nd Pyomo Cookbook
A repository of Pyomo examples.
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Lolita
Using github's issue system as lightweight notes & blog.
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Machine learning
Estudo e implementação dos principais algoritmos de Machine Learning em Jupyter Notebooks.
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Far Ho
Gradient based hyperparameter optimization & meta-learning package for TensorFlow
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook

Tracking the Growth of COVID-19 Cases

Note: We are currently experiencing some issues with a change in the data source. Please bear with me while I get this back up to date soon.

The purpose of this notebook is to infer the rate at which confirmed cases of COVID-19 are growing (or were growing) in various countries.

The notebook pulls data from the John Hopkins Data Repository of global Coronavirus COVID-19 cases, and then does the following things:

  • List total number of confirmed cases (in countries with at least 100 cases)
  • Attempt to fit the time series of confirmed cases in these countries to both an exponential and a logistic function
  • Use these curve fits to infer doubling times (i.e., time for the number of confirmed cases to double)
  • If the curve fit was successful, summarize doubling times for each country

We then repeat the following steps for the US:

  • List total number of confirmed cases by US state & list US locations with the most cases
  • Attempt to fit the time series of confirmed US cases to both an exponential and a logistic function
  • Use these curve fits to infer doubling times (i.e., time for the number of confirmed cases to double)
  • If the curve fit was successful, summarize doubling times for each US state with at least 50 cases

The main conclusion is that the doubling time of confirmed cases for countries with many cases is generally on the order of 2 days.

The notebook is updated every evening Eastern Time.

Important Caveats:

  • This analysis uses data on the confirmed cases as reported by countries, which is lower than the actual number of cases in each country.
  • Confirmed cases and actual cases in the population grow at different rates. For example, if a country suddenly ramps up testing, then the number of confirmed cases will rapidly rise, but the actual cases may not be rising as fast. So the doubling time for confirmed cases is not the same as the doubling time for actual cases.
  • Since we're using the entire timeline to infer the doubling times, these are not the current or most recent doubling times. Instead, for countries where the growth is exponential, the inferred doubling time is indicative of the overall rate of growth.
  • For countries where the growth is no longer exponential and the number of cases is stabilizing (such as Mainland China), we fit the growth curve to a logistic function. Here, the inferred doubling time represents the growth encountered during the initial exponential stage of the epidemic (i.e., in the past).
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].