# clear the environment
library(dplyr)
library(purrr)
library(stringr)
library(readr)
library(readxl)
library(haven)
library(shiny)
library(shinyjs)
library(shinythemes)
library(DT)
library(shinyexplorer)
# Set file upload size limit: 100 MB
options(shiny.maxRequestSize = 1024 * 1024 ^ 2)
source("ui.R", local = TRUE)
source("server.R", local = TRUE)
shinyApp(ui = ui, server = server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.