如何更改Pandas hist命令中图形的顺序?


要更改Pandashist commad中图形的顺序,我们可以采取以下步骤−

  • 使用Pandas创建一个数据框。

  • 使用数据框绘制直方图。

  • 以不同的顺序绘制数据框。

  • 要显示图形,请使用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],
})

df.hist()
df[['c']].hist()
df[['a']].hist()
df[['b']].hist()
plt.show()

结果

更新于:06-May-2021

411次浏览

开启您的 职业生涯

获得认证,完成课程

开始学习
广告