shiny_template/app/global.R
Carlos R. Mercado d3a5510eb8 v0.1 mvp
2022-08-09 13:53:17 -04:00

14 lines
264 B
R

library(shinyjs)
library(shroomDK)
library(data.table)
library(plotly)
library(dplyr)
library(reactable)
example_data <- data.frame(
x = 1:100,
y = abs(rnorm(100)),
z = abs(ceiling(rnorm(100))),
a = as.factor(sample(LETTERS[1:5], 100, replace = TRUE))
)