Breast Cancer (cleaned)
Logistic regression dataset
@kaggle.marshuu_breast_cancer
Logistic regression dataset
@kaggle.marshuu_breast_cancer
Breast cancer Wisconsin (original) dataset contains real data of 699 observations with independent variables that allows you to classify dependent variable into malignant or benign.
The dataset is perfect for logistic regression analysis.
Note: this is a clean dataset and has no missing values, ready to analyse.
CREATE TABLE breast_cancer (
"clump_thickness" BIGINT,
"uniformity_of_cell_size" BIGINT,
"uniformity_of_cell_shape" BIGINT,
"marginal_adhesion" BIGINT,
"single_epithelial_cell_size" BIGINT,
"bare_nuclei" BIGINT,
"bland_chromatin" BIGINT,
"normal_nucleoli" BIGINT,
"mitoses" BIGINT,
"class" BIGINT
);
Anyone who has the link will be able to view this.