dataset for cancer analysis in python

Solutions on MaxInterview for dataset for cancer analysis in python by the best coders in the world

showing results for - "dataset for cancer analysis in python"
Henri
22 Aug 2018
1print(breast_cancer.columns)
2
Matteo
27 Nov 2016
1print(breast_cancer.head())
2
Christian
02 Mar 2020
1         id diagnosis  ...  symmetry_worst  fractal_dimension_worst
20    842302         M  ...          0.4601                  0.11890
31    842517         M  ...          0.2750                  0.08902
42  84300903         M  ...          0.3613                  0.08758
53  84348301         M  ...          0.6638                  0.17300
64  84358402         M  ...          0.2364                  0.07678
7
Pia
16 Jul 2019
1Index(['id', 'diagnosis', 'radius_mean', 'texture_mean', 'perimeter_mean',
2       'area_mean', 'smoothness_mean', 'compactness_mean', 'concavity_mean',
3       'concave points_mean', 'symmetry_mean', 'fractal_dimension_mean',
4       'radius_se', 'texture_se', 'perimeter_se', 'area_se', 'smoothness_se',
5       'compactness_se', 'concavity_se', 'concave points_se', 'symmetry_se',
6       'fractal_dimension_se', 'radius_worst', 'texture_worst',
7       'perimeter_worst', 'area_worst', 'smoothness_worst',
8       'compactness_worst', 'concavity_worst', 'concave points_worst',
9       'symmetry_worst', 'fractal_dimension_worst'],
10      dtype='object')
11