Re: [Matplotlib-users] SciPy 2015 Conference Updates - LAST CALL for talks - 4/10 extension, John Hunter Plotting Contest, registration open, keynotes announced,

2015-05-07 Thread Jacob73
Thanks for giving this info on conference room updates. Well I hire a big hall for meeting and I always take care for everything in meetings. Hey do you know when it will be next meeting on financial planning? I would like to attend that. -- View this message in contex

[Matplotlib-users] How to draw circles in logscale plots

2015-05-07 Thread LowDepth
Hello, how can I plot circles or other shapes in plots which have logarithmic axis? I have a grid of 3 plots and want to plot some kind of sketches in the lower right corner of each subplot. How should I do that? import numpy as np from matplotlib import pyplot as plt from matplotlib import gri

[Matplotlib-users] 2D data plotted in a 3D plot by adding time flow dimension

2015-05-07 Thread arjunascagnetto
hi, I try to make my question as clear as possible. I need to plot 2 dimensional data coming from the serial onto a 3d plot with the third axes made of time flowing. I wrote this code (it's just one of the many tries). It's about the plotting only, not worring about buffer from serial etc etc..

[Matplotlib-users] Perplexing behavior from combined use of Matplotlib and pandas

2015-05-07 Thread AKKO
Dear All, I have made a post on Stackoverflow that has not garnered any help so far, and I'm drawing this to your attention here because it seems like this could be a bug: http://stackoverflow.com/questions/29469179/potential-bug-in-either-matplotlib-or-pandas Please look at my post, and I woul

[Matplotlib-users] bug in zorder example

2015-05-07 Thread plotter
The second example on http://matplotlib.org/examples/pylab_examples/zorder_demo.html seems to expose a bug, which is clearly visible in the vector version: The blue curve with zorder=2 is plotted below the frame and all others with zorder >= 3 are plotted above the frame. This is because the frame

[Matplotlib-users] Problem creating legend for scatter plot with NANs

2015-05-07 Thread burak1000
Hi all, I believe I've found a bug in scatter function in matplotlib 1.4.2: from numpy import * import matplotlib from matplotlib.pyplot import * figure() subplot(111) h = scatter([NAN], [NAN], marker="o", facecolor="r", edgecolor="r", s=3) legend([h], ["scatter"]) savefig("out.png") close()

Re: [Matplotlib-users] Possible bug in padding between text and bounding box for PDF

2015-05-07 Thread Thomas Caswell
Sourish, We no longer are updating the 1.3.x releases. Can you reproduce this problem using 1.4.3? Tom On Thu, May 7, 2015 at 11:14 AM Sourish Basu wrote: > Hello, > > I have been fighting with this problem for some time. It seems that if, on > a plot, I have some text inside a bounding box,

Re: [Matplotlib-users] bug in zorder example

2015-05-07 Thread Benjamin Root
you can always change the zorder of the frame using set_zorder(). Are you talking about the frame of the legend or the plotting area? On Mon, Apr 6, 2015 at 11:23 AM, plotter wrote: > The second example on > http://matplotlib.org/examples/pylab_examples/zorder_demo.html seems to > expose a bug,

Re: [Matplotlib-users] How to draw circles in logscale plots

2015-05-07 Thread Benjamin Root
A quick-n-dirty way would be to use markers via the scatter() function. Just set the facecolor to 'none', and some very large markersize value. Ben Root On Wed, Apr 8, 2015 at 12:49 PM, LowDepth wrote: > Hello, > > how can I plot circles or other shapes in plots which have logarithmic > axis? >

Re: [Matplotlib-users] bug in zorder example

2015-05-07 Thread Thomas Caswell
zorder can be negative, if you want to ensure that all of your lines are always below all of the standard axis components simple decrease the zorder of the elements you want behind rather than increasing the zorder of the elements you want in front. @ben look at the top left of http://matplotlib.

Re: [Matplotlib-users] 2D data plotted in a 3D plot by adding time flow dimension

2015-05-07 Thread Benjamin Root
Looks like nabble swallowed your code snippet. Here it is: ``` import matplotlib.pyplot as plt import mpl_toolkits.mplot3d.axes3d as p3 import numpy.random as rnd import numpy as np TILL = 200 # just to have an end in the for loop def SSI(t): #Simulated Serial Input T = np.asarray(t)

Re: [Matplotlib-users] bug in zorder example

2015-05-07 Thread Benjamin Root
But, why is it doing that only along the top edge and not the other edges (or are my eyes that bad)? On Thu, May 7, 2015 at 11:30 AM, Thomas Caswell wrote: > zorder can be negative, if you want to ensure that all of your lines are > always below all of the standard axis components simple decreas

Re: [Matplotlib-users] bug in zorder example

2015-05-07 Thread Thomas Caswell
It is doing it every where. Also look at the tick above the 2 on the bottom it is slightly clipped. It is definitely seems worse on the top, which might be showing a fence-post issue in the clipping/Agg rendering. As the OP points out zooming in on http://matplotlib.org/mpl_examples/pylab_exampl

[Matplotlib-users] getting equation from a surface-fit model

2015-05-07 Thread diffracteD
Hi. I have a data set like following: x = [2.06, 2.07, 2.14, 2.09, 2.2, 2.05, 1.92, 2.06, 2.11, 2.07] y = [171.82, 170.8, 159.59, 164.28, 169.98, 162.23, 167.37, 173.81,166.66, 155.13] z = [-1.41, -1.26, -1.07, -1.07, -1.46, -0.95, -0.08, -1.28, -1.2, -0.86] Using matplotlib, scipy.linalg.lstsq