Re: [Matplotlib-users] Artifacts when saving as PDF

2015-04-12 Thread Jouni K Seppänen
Thanks for the report, I turned it into a github issue: https://github.com/matplotlib/matplotlib/issues/4331 -- BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT Develop your own process in accordance with t

Re: [Matplotlib-users] I need to force the "rounding" of x axis limits

2015-04-12 Thread Eric Firing
On 2015/04/05 11:19 PM, giacomo boffi wrote: > INTRO > = > > please consider the following code (I'm trying to draw a timeline) > > 1 from matplotlib import pyplot, patches > 2 fig = pyplot.figure() > 3 ax = fig.add_subplot('111') > 4 ax.add_patch(patches.Rectangle((1933,0.25), 73, 0.5)) > 5 py

Re: [Matplotlib-users] Some questions regarding pcolor(mesh)/nbagg/FuncAnimate

2015-04-12 Thread Thomas Caswell
You can ``` #import matplotlib #matplotlib.use('nbagg') #%matplotlib nbagg import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animate class Testing(object): def __init__(self, ): self.fig = plt.figure() array = np.random.rand(4,5)

Re: [Matplotlib-users] Some questions regarding pcolor(mesh)/nbagg/FuncAnimate

2015-04-12 Thread Ryan Nelson
Tom, Thanks for the links. It does seem like fragments of my problem are addressed in each of those comments, so I guess I'll have to wait for a bit until those things get resolved. For now, I can just tell my students to restart the IPython kernel each time they run the animation, which isn't tha