# R convenience packages
library("conflicted")
library("here") #helps with the reproducibility across operating systems
# Data mundging
library("dplyr")
# App building pckages
library("shiny")
library("shinythemes")
library("DT")
library("shinydashboard")
# Computation
library("deSolve") # Solvers for Initial Value Problems of Differential Equations
# Plotting
library("ggplot2")
# Packages with same functions can cause problems
conflict_prefer("filter", "dplyr")
::include_app("https://felipedallalana.shinyapps.io/Temporal_shiny/?showcase=0",
knitrheight = "950px")