ct | R Documentation |
Returns a tibble of CDISC SDTM controlled terminology, optionally filtered to include only term-level entries, only code list definitions, or both.
ct(subset = c("term", "list", "all"))
subset |
One of |
A tibble containing the requested subset of CDISC controlled terminology:
C-code of the code list that the term belongs to.
Identifies the parent code list concept (e.g., C66742
for
Yes/No/Unknown).
Logical indicator: TRUE
if the row represents a code
list definition; FALSE
if it represents a term within a code list.
C-code of the concept (either a term or a code list). Each term
and list has a unique NCI Thesaurus concept code (e.g., C49487
for
"Yes").
Submission value or label for the term (e.g., "Y"
,
"TENMW1-Was Walk/Run Performed"
). For code list rows, this may be
the list name.
Extensibility of the code list (TRUE
, FALSE
, or
NA
). NA
for term-level rows.
Name of the code list or term category (e.g.,
"Yes/No/Unknown Response"
or "10-Meter Walk/Run Functional
Test Test Code"
).
Synonyms or alternative names for the term, often used in CRF annotations or mappings.
Definition or description of the term or code list, taken from the NCI Thesaurus.
Preferred label from the NCI Thesaurus; usually a short human-readable label for the concept.
Controlled terminology data comes from the release dated 2025-03-25.
https://evs.nci.nih.gov/ftp1/CDISC/SDTM/SDTM%20Terminology.txt
# Return only the terms
ct("term")
# Return only the code lists
ct("list")
# Return the full terminology (code lists and individual terms)
ct("all")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.