"""Load the breast cancer dataset, which can be used for binary classification problems."""importwoodworkaswwimportevalmlfromevalml.preprocessingimportload_data
[docs]defload_breast_cancer():"""Load breast cancer dataset. Binary classification problem. Returns: (pd.Dataframe, pd.Series): X and y """filepath=("https://oss.alteryx.com/datasets/breast_cancer.csv?library=evalml&version="+evalml.__version__)X,y=load_data(filepath,index=None,target="target")y.name=NoneX.ww.init()y=ww.init_series(y)returnX,y