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 is a one-time step. You can install indiacovid19data like so:
devtools::install_github(repo = "anirudhjayaraman/indiacovid19data")
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)