AttributeError: Unknown property axisbg

Question:

Here is a code am trying to run:

ax = plt.axes(axisbg='#E6E6E6')
ax.set_axisbelow(True)
plt.grid(color='w',linestyle='solid')

for spine in ax.spines.values():
   spine.set_visible(False)

ax.xaxis.tick_bottom()
ax.yaxis.tick_left()

ax.tick_params(colors='gray',direction='out')
for tick in ax.get_xticklabels():
   tick.set_color('gray')
for tick in ax.get_yaxislabels():
   tick.set_color('gray')

ax.hist(x,edgecolor='E6E6E6',color='E6E6E6');

And the Error is: AttributeError: Unknown property axisbg

Please help me identify the error.

Asked By: Abhishek Kumar

||

Answers:

axisbg is deprecated in matplotlib 2.0+
Use facecolor instead.

https://matplotlib.org/api/api_changes.html

Answered By: sohyal sawhney

Replace the below line of code

ax = plt.axes(axisbg='#E6E6E6')

with

ax = plt.axes(facecolor='#E6E6E6')
Answered By: kmario23