examples inspired by this book
examples inspired by this book
| if (TRUE) { # packages | |
| library(jinjar) | |
| library(shiny) | |
| library(tidyverse) | |
| } # End packages | |
| if (TRUE) { # shiny mod functions | |
| mod_nm1_ui <- function(id){ | |
| ns <- NS(id) | |
| tagList( |
| library(shiny) | |
| library(dplyr) | |
| library(lubridate) | |
| # Load libraries and functions needed to create SQLite databases. | |
| library(RSQLite) | |
| library(RSQLite.extfuns) | |
| saveSQLite <- function(data, name){ | |
| path <- dplyr:::db_location(filename=paste0(name, ".sqlite")) |