knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

This vignette describes the shinyCovidWorld package operation and how to launch the app, showing what the app does, and guidelines for its use.

The goal of shinyCovidWorld package is embedding a Shiny application dashboard about COVID-19 world data exploration and visualisation analysis. It makes it launching the application via a function exported by the own package.

Loading the shinyCovidWorld package

The first step before launching the app is to install the package from GitHub with the following command:

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

Your package is set up loading the package as follows:

library(shinyCovidWorld)

After that, the shiny application can be launched using the launch_app() function, which is the main component of the package:

library(shinyCovidWorld)
launch_app()

This package also provides the code (inside the inst/app/myapp directory) and the dataset used by the interactive Shiny web application.

The dataset used by the application is another component of this package. It is automatically loaded when the shiny application is launched. But the user can also acess it isolated as follows:

library(shinyCovidWorld)
covidData

Explore the contents in this website tabs to more detailed instructions on how to use the package and the functions contained within it.

The Shiny Application - COVID-19 Across The World dashboard

The COVID-19 Across The World provides an overview analysis of the evolution of Coronavirus pandemic across the world using some interactive graphs and tables as visualisation tools for this. It was built using the Shiny framework in R. The purpose was to create an interactive and concise exploration in the Web-App format that can be easy to manipulate.

The raw input data used for this application are retrieved from this GitHub repo. The "Our World in Data" is the organization that maintains this data, which is updated daily and includes data on confirmed cases, deaths, and testing, as well as other social and economic variables of potential interest from 210 countries and 6 continents across the world. The analysis period is from the end of December of 2019 up to 30 September 2020.

Inside the app, the user can explore and visualise the total or the daily number of cases and deaths recorded globally, continent by continent or country by country, through interactive graphs and tables which allow a customised data exploration according to the user interest.

The APP has two-panel tabs in its navigation bar. The 1st Tab shows the evolution of Covid-19 positive cases and deaths globally. The 2nd Tab progresses detailing the data by continent and by country, comparing the development of COVID-19 cases and deaths, in a daily and accumulated basis, through the six continents and 210 countries. The interactive graphs and tables allow updating the data and views according to the user’s selection (by shiny interaction options tools), permitting a customised data exploration as the reader interest.

The information is displayed using the following data visualisations:


More detailed instructions on how to use the applications and its content are provided within the app itself.

Additionals

Any additional help or contribution to the package could be left as an issue on Github or sending me an email at pgre0007@student.monash.edu



etc5523-2020/r-package-assessment-prigrecov documentation built on Jan. 1, 2021, 1:12 a.m.