Ensemble Machine Learning Cookbook
上QQ阅读APP看书,第一时间看更新

Getting ready

Download the wisc_bc_data.csv dataset from GitHub and copy it to your working directory. Let's read the dataset:

df_cancerdata = pd.read_csv("wisc_bc_data.csv")

Take a look at the data with the following code:

df_cancerdata.head(5)

We can see that the data has been read properly: