Set background color for subplot
You can simply do axarr[1,0].set_facecolor('grey')
to change the axis color for any particular axis manually.
matplotlib
accepts many different color strings (examples here and here) as well as hex
values in HTML strings (for example '#eeefff'
).
Axes.set_axis_bgcolor() has been deprecated since version 2.0. Use set_facecolor() now.