This dataset, ATC_code_tbl_df, is a tibble containing ATC (Anatomical Therapeutic Chemical) classification codes assigned to drugs by the World Health Organization. The classification system categorizes drugs into different levels of anatomical and chemical structure.
data(ATC_code_tbl_df)A tibble with 50 observations and 10 variables:
Character variable representing the ATC code assigned to the drug
Character variable indicating the anatomical main group
Character variable indicating the code of level 1
Character variable indicating the therapeutic subgroup
Character variable indicating the code of level 2
Character variable indicating the pharmacological subgroup
Character variable indicating the code of level 3
Character variable indicating the chemical subgroup
Character variable indicating the code of level 4
Character variable with the corresponding DrugBank identifier
The dataset name has been kept as 'ATC_code_tbl_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the MedxR package and assists users in identifying its specific characteristics. The suffix 'tbl_df' indicates that the dataset is a tibble. The original content has not been modified in any way.