I am trying to load the file titanic and I face the following problem. My code is:
from sklearn import datasets
titanic = datasets.load_titanic()
I get the following:
AttributeError: module 'sklearn.datasets' has no attribute 'load_titanic'
While I can load another file. Can anyone help?