Skip to content

sap218/shiny_tip

Repository files navigation

Shiny Tip

My tips for RShiny applications

Basics

  • if you - like me - create hacky shiny applications1 use options(warn=-1)
  • create an app.R with subscripts ui.R and server.R
  • in this app.R call in your packages:
library(shinyjs)
library(shiny)
library(shinythemes)
library(ggplot2); theme_set(theme_linedraw())
library(tidyr)

More information

Footnotes

  1. don't worry the code isn't terrible, it works but i use df$age in ggplot aes() which shows a lot of warnings

  2. or maybe you would like to read the blod i wrote about it