Ejercicio 17: Clasificador python
Con el siguiente código:
from sklearn.datasets import load_breast_cancer # Cargar el dataset Breast breast = load_breast_cancer() X = breast.data y = breast.target
Importamos el data set brast_cancer. Aplicar el algoritmo de decissiontree en python con diferentes opciones y analizad cual da mejor resultado.