Skip to content

Source code of covid-india-analysis, a project to keep track of covid19 in India

License

Notifications You must be signed in to change notification settings

menon99/Indiacovid19

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

India Covid19 Analysis

Contributors

A Java servlet based web application built to keep a track of the covid19 pandemic in India

Website hosted on heroku IndiaCovid19

The data has been fetched from api.covid19india.org . Thank You!

Django REST API has been used to fetch the results of ARIMA predictions, Growth rate and realtime R0 values covid19-api-django

Dependencies

Backend

  • Tomcat 8
  • JSP-API
  • Javax-Servlet-API
  • JSTL
  • org.json
  • okhttp3
  • commons-io

Frontend

  • Tabulator.js
  • Leaflet.js
  • Bootstrap 4
  • Chart.js

To run locally

  • Install Java version 8 or later
  • Install maven on your system
  • Clone or download the repo and cd into it
  • On Linux/Mac
    $ mvn package
    $ sh target/bin/webapp
    
  • On Windows
    C:/> mvn package
    C:/> target/bin/webapp.bat
    

Screenshots

India Map and trend charts

india1

Pie chart and timeline buttons

india2

State-wise table

state table

Arima chart

Arima

Note : We have made an effort at trying to predict the confirmed cases over the next ten days. But we aren't specialists in epidemiology so there are bound to be differences between what is actual and what is predicted.

These predictions are only meant to be taken as a worst case scenario and with a lot of caution. The assumptions made do not take into consideration public health interventions or any other parameters as such.

State Trends

delhi

delhi2

State Growth rate and Arima chart

Arima

Realtime-R0 graph

R0

FAQ's on R0

What is R0?

In any epidemic, 𝑅𝑑 is the measure known as the effective reproduction number. It's the number of people who become infected per infectious person at time 𝑑 . The most well-known version of this number is the basic reproduction number: 𝑅0, when 𝑑=0 . However, 𝑅0 is a single measure that does not adapt with changes in behavior and restrictions.

What can i infer from it?

As a pandemic evolves, increasing restrictions (or potential releasing of restrictions) changes 𝑅𝑑 . Knowing the current 𝑅𝑑 is essential. When 𝑅≫1 , the pandemic will spread through a large part of the population. If 𝑅𝑑<1 , the pandemic will slow quickly before it has a chance to infect many people. The lower the 𝑅𝑑 : the more manageable the situation. In general, any 𝑅𝑑<1 means things are under control.

Why isn't R0 being calculated on a National level?

It is not useful to understand 𝑅𝑑 at a national level. Instead, to manage this crisis effectively, we need a local (state, county and/or city) granularity of 𝑅𝑑 .

What does Max, Min and Most likely mean in the R0 graph?

Max and Min indicate the range of values R0 could have been on that particular day. This range is huge at the beginning of an epidemic as we do not have much data about it. But as we gather more data, we can see that the area between the Max and Min lines start becoming narrow and begin to coincide with Most Likely R0 plot.

What is the methodology being used to calculate R0?

It's a modified version of a solution created by Bettencourt & Ribeiro in 2008 to estimate real-time 𝑅𝑑 using a Bayesian approach. We have used this model to estimate a time-varying 𝑅𝑑 .