# running this will produce the shiny app locally

# packages used
listofpackages <- c("shiny","tidyverse", "ggplot2", "hexbin", "dplyr", "httr", "jsonlite")

for (j in listofpackages){
  if(sum(installed.packages()[, 1] == j) == 0) {
    install.packages(j)
  }
  library(j, character.only = T)
}

# running shiny
#runApp()

runGitHub("ballr", "toddwschneider")