Hello and welcome to my workshop for the Population Dynamics and Health Program at the University of Michigan
Here is a rough outline of my planned schedule for the day. All times E.S.T.
- Introduction: 9:00 - 9:15
- Basic Pieces of App: 9:15 - 9:30
- Building an App: 9:30 - 10:30
- Break: 10:30 - 10:45
- Building an App II: 10:45 - 11:15
- Hosting: 11:15 - 1130
- Accessibility: 11:30 - 11:45
- Break: 11:45 - 12:00
- A Tour of Advanced Features: 12:00-1:00pm
We will be utilizing RStudio and a number of different R packages in this workshop. You can utilize the following R code to install these packages.
packages_to_install = c(
"shiny",
"dplyr",
"ggplot2",
"plotly",
"DT",
"shinyWidgets",
"shinythemes",
"htmltools",
"leaflet",
"sf",
"tigris"
)
#to install all of these
lapply(packages_to_install, install.packages)