This dataset, drugsmisuse_tbl_df, is a tibble containing information about the use of pain relievers for non-medical purposes in the United States. It includes individual-level data for 100 cases, detailing misuse patterns across various opioid-based medications.
data(drugsmisuse_tbl_df)A tibble with 100 observations and 8 variables:
Character variable representing the unique case identifier
Integer variable indicating hydrocodone misuse (1 = Yes, 0 = No)
Integer variable indicating oxycodone misuse (1 = Yes, 0 = No)
Integer variable indicating codeine misuse (1 = Yes, 0 = No)
Integer variable indicating tramadol misuse (1 = Yes, 0 = No)
Integer variable indicating morphine misuse (1 = Yes, 0 = No)
Integer variable indicating methadone misuse (1 = Yes, 0 = No)
Integer variable indicating Vicodin or similar misuse (1 = Yes, 0 = No)
The dataset name has been kept as 'drugsmisuse_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.