29 lines
578 B
R
29 lines
578 B
R
#
|
|
# 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/
|
|
#
|
|
# Credits: Jakub Wajs 2019
|
|
#
|
|
|
|
library(shiny)
|
|
library(dplyr)
|
|
library(shinythemes)
|
|
library(shinyWidgets)
|
|
library(lubridate)
|
|
library(ggplot2)
|
|
library(scales)
|
|
library(tmap)
|
|
library(tmaptools)
|
|
library(leaflet)
|
|
|
|
# Load files
|
|
source("Data/Loader.R")
|
|
source("UI/UI.R")
|
|
source("Server/Server.R")
|
|
|
|
# Run the application
|
|
shinyApp(ui = ui, server = server) |