Python 如何在熊猫中发现自动垃圾箱的价值

Python 如何在熊猫中发现自动垃圾箱的价值,python,pandas,histogram,Python,Pandas,Histogram,我想知道在熊猫中绘制直方图时自动存储箱的值 db['Vt'].hist(bins='auto',color = "blue") 在这种情况下,我不知道如何找到垃圾箱的价值。 谢谢你的回答 bin='auto':直接在matplotlib中指定自动确定的bin。这将使用和箱子选择的最大值 这适用于matplotlib版本>=2.0和numpy版本>=1.11 检查文档

我想知道在熊猫中绘制直方图时自动存储箱的值

db['Vt'].hist(bins='auto',color = "blue")
在这种情况下,我不知道如何找到垃圾箱的价值。
谢谢你的回答

bin='auto'
:直接在matplotlib中指定自动确定的bin。这将使用和箱子选择的最大值

这适用于
matplotlib版本
>=2.0和
numpy版本
>=1.11

检查文档