hide the axis frame in matplotlib
February 27th, 2012 by Lawrence David
to hide the axis bordering a figure:
fig, ax = pylab.subplots()
ax.set_frame_on(False)
February 27th, 2012 by Lawrence David
to hide the axis bordering a figure:
fig, ax = pylab.subplots()
ax.set_frame_on(False)