##R ladies meetup
#Getting started with the Shiny app
Datasets:
Start with clean.R which loads the data, cleans it, then writes the clean data to csv.
Your shiny app will use 3 files
- global.R
- ui.R
- server.R
#global.R Load libraries, data, and perfom any final data manipulation
#ui.R Describe the user interface with side and main panels
#server.R Link the user interface to the underlying dataset