I just started using Matplotlib and am trying to change the color of the face color of a plot...
if I create the figure like this:
plt.figure(num=None, figsize=(5, 10), dpi=80, facecolor='y', edgecolor='k')
only the boarder of the figure changes to yellow... What I would like is the boarder to be white and the plot to be yellow..
edit:
A snip from my current code:
plt.figure(num=None, figsize=(5, 10), dpi=80, facecolor='y', edgecolor='k')
ax = plt.gca()
ax.plot(x, y, color = 'g')


ax.xaxis.pane.fill = Falseor set color of thepane