[Matplotlib-users] Graph ticks label missing !

2013-07-08 Thread Nicolas Mailhot
Hi, Following an hardware failure I had to move some matplotlib scripts from an ancient (but updated) Debian box to a clean RHEL 6 VM. As a result my matplotlib version changed from 1.2.0 (as present in Debian instable) to 1.2.1 (some of the code wanted matplotlib ≥ 1.0, so I rebuilt an 1.2.1

[Matplotlib-users] [Patch] Patch for fontmanager crash

2013-07-08 Thread Nicolas Mailhot
Hi, In matplotlib 1.2.1, the get_name function is not garding against none self (unlike other functions); Unfortunately it seems I have a workload that makes matplotlib call get_name with None (wasn't the case in 1.2.0). I couldn't isolate the exact trigger, when I reduce the volume of data

[Matplotlib-users] Install problems, OSX 10.6.8, Python 3.3.1

2013-07-08 Thread p.maxted
Trying to install matplotlib-1.2.1 from source, i.e., [macpflm:~/matplotlib-1.2.1] pflm% python3 setup.py install Everything seems to run ok, but I cannot import macplotlib: [macpflm:~] pflm% python3 Python 3.3.1 (v3.3.1:d9893d13c628, Apr 6 2013, 11:07:11) [GCC 4.2.1 (Apple Inc. build 5666)

Re: [Matplotlib-users] [Patch] Patch for fontmanager crash

2013-07-08 Thread Martin Mokrejs
Nicolas Mailhot wrote: Hi, In matplotlib 1.2.1, the get_name function is not garding against none self (unlike other functions); Unfortunately it seems I have a workload that makes matplotlib call get_name with None (wasn't the case in 1.2.0). I couldn't isolate the exact trigger, when I

[Matplotlib-users] DistributionChart equivalent?

2013-07-08 Thread Carlos Becker
Hi all, I was wondering if there is something similar to this http://reference.wolfram.com/mathematica/ref/DistributionChart.html in matplotlib, or if someone can give me a hint on how to implement it, since it is very interesting for density plots. As far as I saw, there are histogram plots

Re: [Matplotlib-users] DistributionChart equivalent?

2013-07-08 Thread Benjamin Root
This looks very similar to something Tony Yu made once. Check out this thread: http://matplotlib.1069221.n5.nabble.com/Combination-of-a-box-plot-and-a-histogram-td25313.html#a25319 Note that Tony now has some sort of toolbox available that may have some of this implemented easily. Cheers! Ben

Re: [Matplotlib-users] DistributionChart equivalent?

2013-07-08 Thread josef . pktd
On Mon, Jul 8, 2013 at 4:36 PM, Benjamin Root ben.r...@ou.edu wrote: This looks very similar to something Tony Yu made once. Check out this thread: http://matplotlib.1069221.n5.nabble.com/Combination-of-a-box-plot-and-a-histogram-td25313.html#a25319 Note that Tony now has some sort of

[Matplotlib-users] boxed and centered axes (spines)

2013-07-08 Thread mocalvao
Hello there, I would like to have a plot with centered axes (spines) and also boxed with possible (major and minor) tickmarks along the borders of the visible box. The usual examples from matplotlib gallery only deal with borderless centered/zeroed spines; I would rather have a mix of the second

Re: [Matplotlib-users] Plot/save line collection object without margins

2013-07-08 Thread death jun
06.07.2013, 16:23, Ryan Nelson: You might need to explicitly specify your axes object rather than relying on plt.subplot. Try replacing 'ax = plt.sublplot(111)' with 'ax = plt.axes([0, 0, 1, 1])'. Ryan, thanks for your reply Your suggestion works perfectly Cheers