1. ホーム
  2. python

[解決済み] AttributeError: モジュール 'seaborn' には 'histplot' という属性がありません。

2022-02-09 21:56:04

質問

を使ってプロットしようとしています。 sns.histplot を、KaggleのJupyter NotebookのTitanic Datasetで表示します。

これが私のコードです。

sns.histplot(train, x = "Age", hue="Sex")

しかし、このようなエラーを投げています。

 ---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-11-d14c3b5a0670> in <module>
----> 1 sns.histplot(train, x = "Age", hue="Sex")

AttributeError: module 'seaborn' has no attribute 'histplot'

seabornをインポートするようにしました(以前のプロットでは sns.barplot は正常に動作しました)。

Mac OS X 10.15.6、Seabornバージョン0.11.0にて動作しています。

どなたか、何が悪かったのかご指摘ください。 よろしくお願いします。

解決方法は?

seabornモジュールを使って更新しました。

pip install -U seaborn

で、私の場合は解決しました。