Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AttributeError: Unknown property axisbg

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.

like image 593
Abhishek Kumar Avatar asked May 24 '18 08:05

Abhishek Kumar


1 Answers

Replace the below line of code

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

with

ax = plt.axes(facecolor='#E6E6E6') 
like image 187
kmario23 Avatar answered Sep 20 '22 10:09

kmario23