title: R Shiny Training Resources output: 'rmarkdown::html_vignette' vignette: > %\VignetteIndexEntry{R Shiny Training Resources} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8}
```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
```
Below is a collection of resources for getting started in R and Shiny.
They are listed roughly in the order that I would expect a motivated beginner to work through them.
note: I recommend skimming through the above book and trying out examples.
Skip over sections that you do not understand, and you can come back to them
later.
For a more in-depth walkthrough of setting up R see the R Setup Guide vignette
What is Shiny from Rstudio:
Shiny is an open source R package that provides an elegant and powerful web framework for building web applications using R. Shiny helps you turn your analyses into interactive web applications without requiring HTML, CSS, or JavaScript knowledge.
Here's some more resources gathered from a colleagues recent RShiny learning path:
Built in tutorials for packages can be accessed through the learnr package. For example if you library learnr and tidyverse, the top right panel of RStudio can display a walk through of different functions in the tidyverse package. Blog post describing package: https://blog.rstudio.com/2020/02/25/rstudio-1-3-integrated-tutorials/
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.