I am making a scatterplot in matplotlib and need to change the background of the actual plot to black. I know how to change the facecolor of the plot using:
fig = plt.figure()
fig.patch.set_facecolor('black')
My issue is that this changes the color of the space around the plot. How to I change the actual background color of the plot?

ax.patch.set_facecolor('black')(whereaxis the axes instance).fig.patchis the figure background andax.patchis the axes background. – Joe Kington Dec 30 '12 at 18:50