knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

cwdcovid19


This package contains the shiny app which explores the data of COVID-19. This is an package for cwd course assignment. You could use this package to check the daily COVID-19 cases data of Chile or Bolivia using the launch_dt() function. Or use the launch_confirm_period() function to see the confirmed cases of your selected time period in these two country.


R build status

The goal of cwdcovid19 is to ...

Installation

You can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("etc5523-2020/r-package-assessment-1029YanMa")

Example

This package contains the dataset from the 'coronavirous' R package and provide a long form and a wide form of the data:

library(cwdcovid19)
library(tibble)
library(dplyr)

coronavirus %>% 
  head(10)

coronavirus_long %>% 
  head(10)

coronavirus_wide %>% 
  head(10)

Launch the shiny app within this package


Explore more...

There's another function: n_countries() in this package. This would provide some space for the users to explore the dataset by themselves. For example, maybe you would like to know how many countries reported newly confirmed cases on a certain date.



etc5523-2020/r-package-assessment-1029YanMa documentation built on Jan. 1, 2021, 1:09 a.m.