What happened?
A bug happened!
Using the example code, there is no visualization when Treat variable as factor is checked:
Code to reproduce
library(teal.modules.general)
data <- teal_data()
data <- within(data, {
iris <- iris
mtcars <- mtcars
women <- women
faithful <- faithful
CO2 <- CO2
})
#'
app <- init(
data = data,
modules = modules(
tm_variable_browser(
label = "Variable browser"
)
)
)
if (interactive()) {
shinyApp(app$ui, app$server)
}
What happened?
A bug happened!
Using the example code, there is no visualization when
Treat variable as factoris checked:Code to reproduce