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
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
On Mon, Jul 8, 2013 at 4:36 PM, Benjamin Root 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 toolbox availab
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 R
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 alre
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, whe
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) (d
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
proce
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
pack