📜  matplotlib FiveThirtyEight 水平图 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:39.125000             🧑  作者: Mango

代码示例1
style.use('fivethirtyeight')#style of graph
fig, ax = plt.subplots(figsize=(9, 5))
ax.barh(df1_corr.index, df1_corr)
ax.barh(df2_corr.index, df2_corr)
plt.show()