Materials for the Intro to Shiny workshop with RLadies Nijmegen on 21st Feb 2019. This includes the slides (pdf, pptx) and associated example shiny app scripts that I hope could guide any shiny novice to finishing their first app!
Basic R knowledge is required and, based on the pre-workshop survey, I also prepared some quick refresher slides ( pdf, pptx ) covering:
- using the functions
hist()
andpaste()
- subsetting a data frame (or list), eg.
df[["colname"]]
- assigning and retrieving values, eg.
x <- "colname"
thendf[[x]]
- writing a function with two arguments.