preshitambade / Shiny_app_workshop_2020

Material for the ResBaz 2020 workshop - Intro to Shiny app development

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shiny_app_workshop_2020

Material for the ResBaz 2020 workshop - Intro to Shiny app development

Setup and requirements

Requirements

This lessons assumes that you have some minimal knowledge of the R langage and some familiarity with RStudio. In particular, being familiar with the TidyR and ggplot2 packages is recommended in order to fully understand this workshop.

Setup

R and Rstudio

This lesson assumes you have R and RStudio installed on your computer.

The latest version of R can be downloaded here.

RStudio can be downloaded here. Make sure that you download the free Desktop version for your computer.

R libraries

This workshop will use the following libraries:

  • Shiny
  • readr
  • ggplot2
  • TydR and dplyR

These libraries can be installed together by installing the 'Tidyverse' package. To install the package, open RStudio and run in the console:

install.packages("tidyverse")

To be able to connect to the shinyapps.io server, you'll also need to install the rsconnect package To install the package, open RStudio and run in the console:

install.packages("rsconnect")

ShinyApp.io account

Although not mandatory, if you want to be able to deploy your App on the ShinyApp.io server, you'll need to create a free account on ShinyApps.io

About

Material for the ResBaz 2020 workshop - Intro to Shiny app development

License:MIT License


Languages

Language:R 88.3%Language:HTML 11.7%