TPD-InternationalFootballRe.../app.R

27 lines
547 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)
2019-05-15 19:56:07 +02:00
library(shinythemes)
2019-05-19 00:07:35 +02:00
library(shinyWidgets)
library(lubridate)
2019-05-16 00:37:48 +02:00
library(ggplot2)
library(scales)
2019-05-19 19:05:06 +02:00
library(tmap)
library(tmaptools)
library(leaflet)
2019-05-14 22:41:05 +02:00
# Load files
source("Data/Loader.R")
2019-05-16 00:37:48 +02:00
source("UI/UI.R")
source("Server/Server.R")
2019-05-14 22:41:05 +02:00
# Run the application
2019-05-19 19:05:06 +02:00
shinyApp(ui = ui, server = server)