I am learning scikit-learn and I ran this code, which imports the breast cancer csv
from sklearn.datasets import load_breast_cancer
cancer_data = load_breast_cancer()
#print(cancer_data.DESCR)
When I run cancer_data.keys(), it brings back the following:
dict_keys(['data', 'target', 'frame', 'target_names', 'DESCR', 'feature_names', 'filename'])
There are no column headers in this csv, yet running cancer_data.feature_names gives me a list of column names. Where is this information coming from?
thanks