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)
|
2019-05-15 22:28:34 +02:00
|
|
|
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
|
|
|
|
2019-05-15 00:27:04 +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)
|