Libraries

# 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")

App

knitr::include_app("https://felipedallalana.shinyapps.io/Temporal_shiny/?showcase=0",
 height = "950px")