前提・実現したいこと
ここに質問の内容を詳しく書いてください。
Jupyter Notebookで、ヒストグラムを作成しようとしています
seabornモジュールのhistplotを用いて。
■■な機能を実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
--------------------------------------------------------------------------- --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-9-979505ff3cc5> in <module> 1 import seaborn as sns 2 sns.set() ----> 3 sns.histplot(data=df, x="hi", binrange=[16.5, 37.5]) AttributeError: module 'seaborn' has no attribute 'histplot'
該当のソースコード
Python3
1###ソースコード 2# import numpy as np 3import matplotlib.pyplot as plt 4 5#データベクトル 6x = np.array([29.9, 29.6, 30.4, 31.1, 36.5, 7 27.6, 20.1, 21.2, 25.6, 26.0, 8 27.9, 25.4, 26.7, 23.7, 22.7, 9 27.8, 23.3, 17.2, 25.6, 26.4, 10 29.0, 21.8, 21.9, 21.8, 24.3, 11 22.7, 26.0, 18.4, 22.7, 26.1, 12 27.8 13]) 14import pandas as pd 15df = pd.DataFrame(dict(hi=x)) 16import seaborn as sns 17sns.set() 18sns.histplot(data=df, x="hi", binrange=[16.5, 37.5])
試したこと
補足情報(FW/ツールのバージョンなど)
Jupyter Notebook(ver.0.6.3)
Pythson3
回答2件
あなたの回答
tips
プレビュー