在Pandas / Matplotlib中根据类绘制直方图
要在Pandas / Matplotlib中根据类绘制直方图,我们可以执行以下步骤:
- 设置图形尺寸并调整子图之间和周围的填充。
-
使用Pandas数据帧创建潜在的非均质表格数据。
-
从DataFrame值中制作直方图。
-
要显示图形,请使用 show() 方法。
示例
from matplotlib import pyplot as plt
import pandas as pd
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
df = pd.DataFrame({'a': [1, 1, 1, 1, 3],'b': [1, 1, 2, 1, 3],'c': [2, 2, 2, 1, 3],
'd': [2, 1, 2, 1, 3],})
df.hist()
plt.show()