What is your question?
When testing about default_cdisc_join_keys along with the scda datasets. I was unable to find the join keys for c("ADAB" "ADPC" "ADPP" "ADTR") in the default_cdisc_join_keys however they were present in scda. There were also additional join keys in the default_cdisc_join_keys c("ADSAFTTE" "ADCSSRS" "ADEQ5D5L") which were missing in the scda datasets.
I thought that CDISC datasets formats contain an exhaustive list of datasets (at least for a given version of the SDTM). My question is do we need to extend the default_cdisc_join_keys to include the missing datasets from scda? Perhaps also add all the available datasets in the default_cdisc_join_keys into scda.
join_key_datasets <- default_cdisc_join_keys |> names()
latest_scda_names <- scda::synthetic_cdisc_data("latest") |> names() |> toupper()
setdiff(latest_scda_names, join_key_datasets)
# [1] "ADAB" "ADPC" "ADPP" "ADTR"
setdiff(join_key_datasets, latest_scda_names)
# [1] "ADSAFTTE" "ADCSSRS" "ADEQ5D5L"
Code of Conduct
Contribution Guidelines
Security Policy
What is your question?
When testing about
default_cdisc_join_keysalong with thescdadatasets. I was unable to find the join keys forc("ADAB" "ADPC" "ADPP" "ADTR")in thedefault_cdisc_join_keyshowever they were present inscda. There were also additional join keys in thedefault_cdisc_join_keysc("ADSAFTTE" "ADCSSRS" "ADEQ5D5L")which were missing in thescdadatasets.I thought that CDISC datasets formats contain an exhaustive list of datasets (at least for a given version of the SDTM). My question is do we need to extend the
default_cdisc_join_keysto include the missing datasets fromscda? Perhaps also add all the available datasets in thedefault_cdisc_join_keysintoscda.Code of Conduct
Contribution Guidelines
Security Policy