Binary classification:Load breast cancer
Use the load_breast_cancer() from sklearn.datasets to get a copy of the breast cancer (diagnostic) data with 569 instances and 30 numeric predictive attributes. The binary responses include 212 Malignant and 357 Benign cases. Use train_test_split to divide the data into 80% training data and 20% testing data, then perform the following machine learning tasks. Step […]
Binary classification:Load breast cancer Read More »