/indiacovid19data

R package to source India COVID-19 data from the covid19india.org API

Primary LanguageROtherNOASSERTION

indiacovid19data

Travis build status Build status

This package provides a function to load all CSV data available at COVID19-India API at once in your R environment. The data sets are loaded into an R list of R Data Frames.

Installation

Installation is a one-time step. You can install indiacovid19data like so:

devtools::install_github(repo = "anirudhjayaraman/indiacovid19data")

Quick demo

In order to store the data:

library(indiacovid19data)
covid_datasets_india <- source_data()

In order see which data sets are available:

names(covid_datasets_india)

For example, if you want the case_time_series data set:

case_time_series <- covid_datasets$case_time_series
View(case_time_series)