To remove frame in figure, I write
frameon=False
works perfect with pyplot.figure, but with matplotlib.Figure it
pyplot.figure
matplotlib.Figure
I use to do so:
from pylab import * axes(frameon = 0) ... show()