46 lines
787 B
R
Executable File
46 lines
787 B
R
Executable File
library("dbplyr")
|
|
library("tidyverse")
|
|
library("shiny")
|
|
library("shinyWidgets")
|
|
library("DBI")
|
|
library("RSQLite")
|
|
library("dbx")
|
|
library("RJDBC")
|
|
library("shinydashboard")
|
|
library("reactable")
|
|
library("conflicted")
|
|
library("R.utils")
|
|
library("shinyjs")
|
|
|
|
conflicts_prefer()
|
|
conflicts_prefer()
|
|
|
|
|
|
conn <- dbConnect(RSQLite::SQLite(), "db/development.sqlite")
|
|
sourceDirectory("R/")
|
|
source("~/R/rfunc/fehler_add.R")
|
|
|
|
|
|
conflicts_prefer(
|
|
ggplot2::`%+%`,
|
|
shinyjs::alert,
|
|
shinydashboard::box,
|
|
rJava::clone,
|
|
dplyr::select,
|
|
dplyr::filter,
|
|
tidyr::extract,
|
|
shinyjs::hidden,
|
|
dplyr::ident,
|
|
dplyr::lag,
|
|
shiny::printStackTrace,
|
|
shinyjs::removeClass,
|
|
shinyjs::reset,
|
|
shiny::runExample,
|
|
shiny::setProgress,
|
|
shinyjs::show,
|
|
dplyr::sql,
|
|
shiny::validate,
|
|
.quiet = TRUE
|
|
)
|
|
|