We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
data
part of #937
cdisc_data
teal_data
Specifying data in teal can be changed to simply specifying a list of datasets and code (automatically parsed)
library(scda) ADSL <- synthetic_cdisc_data("latest")$adsl ADTTE <- synthetic_cdisc_data("latest")$adtte ADRS <- synthetic_cdisc_data("latest")$adrs data <- teal.data::cdisc_data( ADSL = ADSL, ADTTE = ADTTE, ADRS = ADRS, code = quote({ ADSL <- scda::synthetic_cdisc_data("latest")$adsl ADTTE <- scda::synthetic_cdisc_data("latest")$adtte ADRS <- scda::synthetic_cdisc_data("latest")$adrs }) )
In the same time, it is still possible to use legacy cdisc_dataset which is soft deprecated
cdisc_dataset
cdisc_data( cdisc_dataset("ADSL", ADSL), cdisc_dataset("ADTTE", ADTTE), cdisc_dataset("ADRS", ADRS), code = ' ADSL <- scda::synthetic_cdisc_data("latest")$adsl ADTTE <- scda::synthetic_cdisc_data("latest")$adtte ADRS <- scda::synthetic_cdisc_data("latest")$adrs ' )
The text was updated successfully, but these errors were encountered:
gogonzo
Successfully merging a pull request may close this issue.
part of #937
1. Simplifying
cdisc_data
andteal_data
Specifying data in teal can be changed to simply specifying a list of datasets and code (automatically parsed)
In the same time, it is still possible to use legacy
cdisc_dataset
which is soft deprecatedThe text was updated successfully, but these errors were encountered: