Introduction to R Shiny
2023-07-04
Chapter 1 Prerequisites
Before the tutorial please install R and RStudio,
Then install packages from CRAN and Bioconductor with the following R code:
install.packages("tidyverse")
install.packages("shiny")
install.packages("DT")
install.packages("shinydashboard")
1.1 Download files
download.file(
"https://github.com/nkandhari/R-ShinyIntro-MBP/raw/master/ShinyApps.zip",
destfile="ShinyApps.zip")
unzip("ShinyApps.zip")
Download these files. tutorial.R contains all the code in the “tutorial” link below. During the tutorial, we will be stepping through tutorial.R in RStudio.