Setting up Shiny

Haley Jeppson, Joe Papio,
Sam Tyner

June 15, 2017

It’s So Shiny!

Picture of Sample Applet

What is shiny?

Shiny is an R package that allows you to easily create interactive web applets using R.

  • Produced by RStudio
  • Code can be entirely within R (or customize with HTML/JavaScript)
  • Take a look at RStudio’s showcase of Shiny applets

Shiny Documentation and Help

Installing Shiny

install.packages("shiny")

A Simple Example

If your working directory is set appropriately, run the following code:

library(shiny)
runApp("../code/01_Hello")
Picture of Hello Shiny! Applet