我正在尝试加载文件 Titanic,但我面临以下问题。我的代码是:

from sklearn import datasets
titanic = datasets.load_titanic()

我得到以下信息:
AttributeError: module 'sklearn.datasets' has no attribute 'load_titanic'

虽然我可以加载另一个文件。任何人都可以帮忙吗?

最佳答案

According to the documentation ,当前稳定版本 ( load_titanic() ) 没有玩具数据集 scikit-learn v0.19.1 - 您使用的是哪个版本?您可以通过 sklearn.__version__ 获取版本。

从文档中,有以下玩具数据集可用:

load_boston()
load_iris()
load_diabetes(
load_digits()
load_linnerud()
load_wine()
load_breast_cancer()

也许你的教程已经过时了?

关于python-3.x - AttributeError: 模块 'sklearn.datasets' 没有属性 'load_titanic',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47242694/

10-11 04:25