mirror of
https://github.com/FlipsideCrypto/shiny_template.git
synced 2026-02-06 18:56:49 +00:00
14 lines
264 B
R
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))
|
|
)
|