On Tue, Mar 31, 2009 at 2:16 AM, Jouni K. Seppänen wrote:
> Use fig.add_axes([0,0,1,1],frameon=False) instead - add_subplot reserves
> some space for a title, axis labels, etc.
>
Great, that works. I have noticed that when I use ticks and labels,
the border sometimes cuts things off (for small i
Ken Schutte writes:
> Is it possible to control (actually remove) the amount of white space
> padded to a figure when saving to a file? For example, the white
> border found on the output of something like the following:
[...]
> ax = fig.add_subplot(111,frameon=False)
Use fig.add_axes([0,0,1,1]
Is it possible to control (actually remove) the amount of white space
padded to a figure when saving to a file? For example, the white
border found on the output of something like the following:
import matplotlib.pyplot as plt
import matplotlib.patches as mpatches
fig = plt.figure()
ax = fig.add