-
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: tm_t_summary module - dataname parameter does not accept other names than ADSL #1240
Comments
And this app below works just simply changing dataset name from "cars" to "ADSL" but it would be nice to have in the running application the real name of dataset instead of dummy name "ADSL" library(teal.modules.general)
library(teal.modules.clinical)
library(dplyr)
library(tidyr)
options(shiny.useragg = FALSE)
cars<-mtcars
cars$brand<-rownames(cars)
rownames(cars)<-NULL
#create dummy variables USUBJID and STUDYID required by teal.modules.clinical
cars<-cars %>% mutate(USUBJID=row_number(), STUDYID="ABC") %>%
mutate(across(where(is.character), as.factor))
lbl<-names(cars)
Hmisc::label(cars)<-as.list(lbl)
data<-cdisc_data(ADSL=cars)
datanames(data)<-c("ADSL")
# app
app <- init(
data = data,
modules = modules(
tm_data_table("Data Table"),
tm_variable_browser("Variable Browser"),
tm_missing_data("Missing Data"),
tm_t_summary(
label = "Demographic Table",
dataname = "ADSL",
arm_var = choices_selected("brand"),
add_total = TRUE,
summarize_vars = choices_selected(
c("cyl", "hp", "carb")),
useNA = "ifany"
)
),
header = "Example"
)
shinyApp(app$ui, app$server) |
The first line of the README in
The package is specifically designed to work with CDISC standard datasets. Dataset names and column names are part of this standard, which allows the modules to seamlessly interact with clinical trial data by assuming certain structures and identifiers, such as Given this design, extending Another important thing to point out is that the teal modules from this package are shiny/teal abstractions over the package tern after following ADaM data standard to make sure it is easy to manage and create standard widgets for data manipulation before creating the TLGs. And tern is specifically designed to create TLGs for clinical trial reporting. @Mia-data my question is: Why do you think it's nice to be able to use the teal modules from this package also for non-clinical data? |
@vedhav I understand the dedication of this package to clinical data. Maybe then you could consider to add tm_t_summary module for the package teal.modules.general? Such feature would greatly support work on medical real-world data from medical insurance companies, hospitals and registries. Real-world data has been gaining more and more attention of FDA over last years. The importance of real-world studies shouldn't be neglected and shouldn't be treated as inferior to clinical studies. Conversly, real-world studies provide insight what is really happening in real-world setting with a broad spectrum of patients that usually are excluded in clinical trials. Therefore, I think that adding a feature of tm_t_summary modlue to teal.modules.general will be GREAT benefit with low workload since the code just night to be slightly modified from clinical to more generic convention. Thank you for you consideration. And in the meantime, I will use workaround to force teal.modules.clinical to work with my non-clinical data from disease registry |
I know that tm_t_summary is from teal.clinical.modules and devoted for clinical data, but it woould be nice to be able to use it also for non-clinical data. tm_t_summary modules works under the condition that my non-clinical data is renamed to "ADSL" and contains artificially made viariables USUBJID and STUDYID. It makes sense to have variable with unique ID but does it have to be named as USUBJID? It would be nice if in the parameters of tm_t_summary I could provide
Below reprex example
Relevant log output
Error: Assertion on 'modules' failed: - Module 'Demographic Table' uses datanames not available in 'data': ("ADSL") not in ("cars").
Code of Conduct
Contribution Guidelines
Security Policy
The text was updated successfully, but these errors were encountered: