Potentially caused by teal.code:::get_code_dependency
What happened?
When running below on this branch insightsengineering/teal.modules.general#795
devtools::load_all("../teal")
devtools::load_all(".")
footnote_regression <- teal_transform_module(
server = make_teal_transform_server(expression(
plot <- plot + labs(caption = deparse(summary(fit)[[1]]))
))
)
data <- teal_data()
data <- within(data, {
require(nestcolor)
ADSL <- rADSL
})
join_keys(data) <- default_cdisc_join_keys[names(data)]
app <- init(
data = data,
modules = modules(
tm_a_regression(
label = "Regression",
response = data_extract_spec(
dataname = "ADSL",
select = select_spec(
label = "Select variable:",
choices = "BMRKR1",
selected = "BMRKR1",
multiple = FALSE,
fixed = TRUE
)
),
regressor = data_extract_spec(
dataname = "ADSL",
select = select_spec(
label = "Select variables:",
choices = variable_choices(data[["ADSL"]], c("AGE", "SEX", "RACE")),
selected = "AGE",
multiple = TRUE,
fixed = FALSE
)
),
decorators = list(footnote_regression)
)
)
)
if (interactive()) {
shinyApp(app$ui, app$server)
}
sessionInfo()
No response
Relevant log output
No response
Code of Conduct
Contribution Guidelines
Security Policy
Potentially caused by
teal.code:::get_code_dependencyWhat happened?
When running below on this branch insightsengineering/teal.modules.general#795
sessionInfo()
No response
Relevant log output
No response
Code of Conduct
Contribution Guidelines
Security Policy