Series(pandas)で作成したデータフレームのヒストグラムがうまく描けません。
◎やったこと
python
1import numpy as np 2arr=np.array([10,20,10]) 3 4from pandas import Series 5df = Series(arr) 6df.hist()
python
1 import matplotlib.pyplot as plt 2plt.hist(df)
回答1件
あなたの回答
tips
プレビュー
投稿2019/10/31 00:48
編集2019/10/31 01:03Series(pandas)で作成したデータフレームのヒストグラムがうまく描けません。
◎やったこと
python
1import numpy as np 2arr=np.array([10,20,10]) 3 4from pandas import Series 5df = Series(arr) 6df.hist()
python
1 import matplotlib.pyplot as plt 2plt.hist(df)
回答1件
あなたの回答
tips
プレビュー