This dataset, products_drug_tbl_df, is a tibble containing detailed information on 3,764 commercially available pharmaceutical products in Canada and the United States. Each record includes identifiers such as NDC and DPD codes, marketing start and end dates, strength, dosage form, administration route, approval status, and source agency.
data(products_drug_tbl_df)A tibble with 3,764 observations and 19 variables:
Character variable with the commercial name of the drug product
Character variable indicating the name of the pharmaceutical company
Character variable with the U.S. National Drug Code (NDC) identifier
Character variable for the product-level NDC code
Character variable for the Canadian Drug Product Database (DPD) ID
Character variable for the European Medicines Agency product code
Character variable with the EMA marketing authorization number
Character variable indicating marketing start date
Character variable indicating marketing end date
Character variable representing the drug's dosage form
Character variable with the dosage strength
Character variable describing the route of administration
Character variable for the FDA application number
Character variable indicating if the product is a generic formulation
Character variable indicating OTC availability
Character variable specifying whether the product is approved
Character variable indicating the country of approval (Canada/US)
Character variable with the originating regulatory body
Character variable linking to related records
The dataset name has been kept as 'products_drug_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 data frame. The original content has not been modified in any way.