breast_cancer_data | R Documentation |
A simulated dataset for breast cancer screening research. It includes patient identifiers, results from various screening modalities, cancer status, and risk factors.
data(breast_cancer_data)
A data frame with 2000 rows and 10 variables:
Integer. Unique patient identifier.
Character. Result of clinical breast examination (e.g., "Normal", "Abnormal").
Character. Mammography result (e.g., "BIRADS 1", "BIRADS 4").
Character. Ultrasound result (e.g., "Normal", "Suspicious").
Character. MRI result (e.g., "Normal", "Suspicious").
Character. Actual cancer status, the gold standard (e.g., "Cancer", "No Cancer").
Integer. Patient's age in years.
Character. Family history of breast cancer (e.g., "Yes", "No").
Character. BRCA mutation status (e.g., "Positive", "Negative").
Character. Breast density category (e.g., "A", "B", "C", "D" or "Fatty", "Scattered", "Heterogeneously Dense", "Extremely Dense").
data(breast_cancer_data)
str(breast_cancer_data)
head(breast_cancer_data)
summary(breast_cancer_data$age)
table(breast_cancer_data$cancer_status, breast_cancer_data$mammography)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.