摆脱python matplotlib条形图中的灰色背景

时间:2015-05-03 00:41:24

标签: python matplotlib

如何在python matplotlib中使用foll命令删除下图中的灰色背景

ax.bar(x_axis,bar_val,yerr=err_val,linewidth=0,width=0.2)

enter image description here

2 个答案:

答案 0 :(得分:4)

首先,我应该指出灰色背景不是matplotlib的默认背景。你是否正在使用像seaborn这样的东西(在我看来,这是不恰当的),默认情况下你会在导入它时使用matplotlib的默认值?

由于我假设ax已经是你的轴,你可以这样做:

ax.set_axis_bgcolor('white')

答案 1 :(得分:3)

版本2.0中不推荐set_axis_bgcolor函数。请改用set_facecolor。您的代码为ax.set_facecolor('white')