This dataset, drug_prices_tbl_df, is a tibble containing information on unit prices for various pharmaceutical products. Each record includes a description, currency, cost per unit, unit type, and a parent key identifier.
data(drug_prices_tbl_df)A tibble with 208 observations and 5 variables:
Character variable describing the drug or product
Character variable indicating the currency in which the price is expressed
Numeric variable indicating the unit cost of the drug
Character variable representing the measurement unit (e.g., tablet, mL)
Character variable serving as a linking identifier to related records
The dataset name has been kept as 'drug_prices_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.