[Matplotlib-users] Live (real-time) plotting two data sets on the same graph

2011-12-08 Thread c01etek
I've already made a wxpython based solution to plot real-time data on plots (using matplotlib). Basically there is a timer for redrawing data (that is appended to by another thread), and when it redraws it does: timestamp = time.time() # add to x, y datasets self.timestamps.append(timestamp) sel

Re: [Matplotlib-users] how to use different font for serif

2011-12-08 Thread Jonathan Slavin
Finally found a solution for this -- actually just tried solution from Piter_ in his post -- deleted fontList.cache and it works. That is, just doing rcParams['font.family'] = 'Times New Roman' gives me that font as the default. Jon > From: Michael Droettboom > > > To: matplotl

Re: [Matplotlib-users] problem with annotate

2011-12-08 Thread Neal Becker
Yes, setting annotation_clip=False did fix it. I will try to send a minimal example. ATM, my example is not at all minimal, but I suspect that you can easily reproduce this with any plot where the x axis is set so that the rightmost point is on the edge of the graph, and annotation is set to r