Re: [Matplotlib-users] Call for new style defaults

2015-07-13 Thread Philipp A.
Thomas Caswell schrieb am So., 12. Juli 2015 um 18:21 Uhr: > The new default color map will be 'viridis' (aka option D). > hi, how did you get to that decision? from at cursory glance at the opinions thread there didn’t seem to be a majority for option D as opposed to A, B, and C. A, B, and C

Re: [Matplotlib-users] How can I visualize a landscape which I have sample heights of?

2015-06-25 Thread Philipp A.
hi! do a delaunay triangulation on them. also try to do the triangulation only on the xy coordinates and see which of both gives the results you like more. best, p justonium schrieb am Do., 25. Juni 2015 u

Re: [Matplotlib-users] Fwd: [matplotlib-devel] RFC: candidates for a new default colormap

2015-06-05 Thread Philipp A.
I vote for A and B. Only B if i get just one vote. C is too washed out and i like the warm colors more than the cold ones in D. It’s funny that this comes up while I’m handling colormaps in my own work at the moment. Neal Becker schrieb am Fr., 5. Juni 2015 um 12:58 Uhr: > I vote for D, althou

Re: [Matplotlib-users] mplot3d ticklabels

2011-02-25 Thread Philipp A.
2011/2/25 Philipp A. > 2011/2/25 Benjamin Root > >> On Fri, Feb 25, 2011 at 8:09 AM, Philipp A. wrote: >> >>> hi, >>> Axes3D from mpl_toolkits.mplot3d does not override set_*ticklabels. >>> this >>> bug<http://sourceforge.net/trac

Re: [Matplotlib-users] mplot3d ticklabels

2011-02-25 Thread Philipp A.
2011/2/25 Benjamin Root > > > On Fri, Feb 25, 2011 at 8:09 AM, Philipp A. wrote: > >> hi, >> Axes3D from mpl_toolkits.mplot3d does not override set_*ticklabels. >> this >> bug<http://sourceforge.net/tracker/index.php?func=detail&aid=2874110&gr

[Matplotlib-users] mplot3d ticklabels

2011-02-25 Thread Philipp A.
hi, Axes3D from mpl_toolkits.mplot3d does not override set_*ticklabels. this bugis about the issue. to get a crude replacement, i have to do the following: for x, s in enumerate(ticks): > ax.text3D(x, -.1

Re: [Matplotlib-users] Matplotlib Widget in QT Question

2011-02-22 Thread Philipp A.
2011/2/18 Jason Stone > Good afternoon all, > I'm developing a GUI using QT Designer 4 and Python 2.7. The GUI will need > to have several plots on it in order to show the data in the ways that I > need. To accomplish this I'm using the matplotlib widget from within QT > Designer. It all seems

Re: [Matplotlib-users] 3D Data to 2d Plots

2011-02-03 Thread Philipp A.
2011/2/3 Mike Alger > Sorry I was out of touch for a while I have been busy with other things, > > > > You would have to do some sort of a bin solution with the method I > suggested. So m/z values would not have to be exact but you would group > ranges of them together. > > > > To be honest base

Re: [Matplotlib-users] 3D Data to 2d Plots

2011-01-28 Thread Philipp A.
2011/1/28 Mike Alger > Philip, > > > > A few questions before I give one possible solution, > > > > Does this plot need to be updated in real time ? or is this plot to be done > in post processing? > > > > if you can do the plots with post processing you should be able to use > pcolor function to

[Matplotlib-users] 3D Data to 2d Plots

2011-01-27 Thread Philipp A.
Hi list, I want to visualize Plots over time. This describes the data: [image: 3dplot.png] a) and b) are single scans, the cutting at the red bars is no problem. c) illustrates how they are done over time. d) is what I want. I think this plot