TPD-InternationalFootballRe.../app.R

21 lines
398 B
R
Raw Normal View History

2019-05-14 22:41:05 +02:00
#
# This is a Shiny web application. You can run the application by clicking
# the 'Run App' button above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
library(shiny)
library(dplyr)
# Load files
source("Data/Loader.R")
source("UI/main.R")
source("Server/main.R")
2019-05-14 22:41:05 +02:00
# Run the application
shinyApp(ui = ui, server = server)