Breast Cancer Dataset
Binary Classification Prediction for type of Breast Cancer
@kaggle.yasserh_breast_cancer_dataset
Binary Classification Prediction for type of Breast Cancer
@kaggle.yasserh_breast_cancer_dataset
Breast cancer is the most common cancer amongst women in the world. It accounts for 25% of all cancer cases, and affected over 2.1 Million people in 2015 alone. It starts when cells in the breast begin to grow out of control. These cells usually form tumors that can be seen via X-ray or felt as lumps in the breast area.
The key challenges against it’s detection is how to classify tumors into malignant (cancerous) or benign(non cancerous). We ask you to complete the analysis of classifying these tumors using machine learning (with SVMs) and the Breast Cancer Wisconsin (Diagnostic) Dataset.
This dataset has been referred from Kaggle.
CREATE TABLE breast_cancer (
"id" BIGINT,
"diagnosis" VARCHAR,
"radius_mean" DOUBLE,
"texture_mean" DOUBLE,
"perimeter_mean" DOUBLE,
"area_mean" DOUBLE,
"smoothness_mean" DOUBLE,
"compactness_mean" DOUBLE,
"concavity_mean" DOUBLE,
"concave_points_mean" DOUBLE,
"symmetry_mean" DOUBLE,
"fractal_dimension_mean" DOUBLE,
"radius_se" DOUBLE,
"texture_se" DOUBLE,
"perimeter_se" DOUBLE,
"area_se" DOUBLE,
"smoothness_se" DOUBLE,
"compactness_se" DOUBLE,
"concavity_se" DOUBLE,
"concave_points_se" DOUBLE,
"symmetry_se" DOUBLE,
"fractal_dimension_se" DOUBLE,
"radius_worst" DOUBLE,
"texture_worst" DOUBLE,
"perimeter_worst" DOUBLE,
"area_worst" DOUBLE,
"smoothness_worst" DOUBLE,
"compactness_worst" DOUBLE,
"concavity_worst" DOUBLE,
"concave_points_worst" DOUBLE,
"symmetry_worst" DOUBLE,
"fractal_dimension_worst" DOUBLE
);Anyone who has the link will be able to view this.