Putting it all together – UCI breast cancer dataset
How to do it...
The dataset is provided thanks to Street, N (1990), UCI machine learning repository (https://archive.ics.uci.edu/ml/machine-learning-databases/breast-cancer-wisconsin/breast-cancer-wisconsin.data), Madison, WI: University of Wisconsin, computer sciences department:
- After reading the citation/license information, load the dataset from UCI:
import numpy as np
import pandas as pd
data_web_address = data_web_address = "https://archive.ics.uci.edu/ml/machine-learning-databases/breast-cancer-wisconsin/breast-cancer-wisconsin.data"
column_names = ['radius',
'texture',
'perimeter',
...