Re: [matplotlib-devel] backporting the boxplot fix

2015-04-25 Thread Thomas Caswell
The commit that fixes that
https://github.com/matplotlib/matplotlib/commit/40720ef9fb5de75d908d0ce433d5c3bb8902884f
should be in 1.4.1 an onward.  Exactly which version are you using?

There will be no 1.4.4.

On Tue, Apr 21, 2015 at 11:00 AM Michael Kaufman  wrote:

> Is there any possibility of back-porting the fix to the boxplot
> positions to v1.4.x? This would be ticket #3563. I had thought that this
> was fixed in 1.4, but it seems to be there again. v1.5-devel (where the
> boxplot works fine) is not-very-usable for me due to the GTK idle bug.
>
> Thanks,
>
> M
>
>
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live
> exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> Matplotlib-devel mailing list
> Matplotlib-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel


Re: [matplotlib-devel] Compile Matplotlib for Android

2015-04-25 Thread Thomas Caswell
Sorry this never got a response.  I also have no idea where to start, but
mpl depends an numpy (which has significant c code) and a number of c
extensions internally (Agg for rasterization, freetype for font rendering).

I would suggest starting with figuring out how to compile numpy as it is
required and I suspect simpler to compile.

Tom

On Sun, Mar 29, 2015 at 9:19 AM Achyut Rastogi 
wrote:

> Hello,
> I want to compile matplotlib for Android, but I really don't have any clue
> where to start, well I have already stated with learning SL4A, also
> inclement sir(Alexander Taylor) says that its already been done by someone
> but I couldn't find it at all so if somebody has any information about it
> please post it here, also if you have anything else that may help in this,
> please post that here too.
> If somebody is interested in this, they can check my progress here
> .
> Lastly, Thank you very much for all the informative comments on the thread
> 'Kivy backend', that really helped me a lot in writing  my proposal.
>
> --
> Dive into the World of Parallel Programming The Go Parallel Website,
> sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for
> all
> things parallel software development, from weekly thought leadership blogs
> to
> news, videos, case studies, tutorials and more. Take a look and join the
> conversation now. http://goparallel.sourceforge.net/
> ___
> Matplotlib-devel mailing list
> Matplotlib-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel


Re: [matplotlib-devel] Alternative way of specifying plot layout

2015-04-25 Thread Thomas Caswell
The MEP tree has been moved into the main repo
https://github.com/matplotlib/matplotlib/tree/master/doc/devel/MEP

I am pretty excited about this feature.

I don't remember if this got mentioned upthread, but this ties in with
https://github.com/matplotlib/matplotlib/issues/1109 as a nice way to set
up all of the constraints.

Tom

On Thu, Mar 19, 2015 at 1:10 PM Nicolas P. Rougier 
wrote:

> Ok. I'll wait for the MEP directory to start writing a proposal.
> Here is a flavor of what I think could be done (to be seen using a fixed
> width font):
>
>
> "AB":
> ┌┐┌┐
> │ A  ││ B  │
> ││││
> ││││
> └┘└┘
>
> "ABB":
> ┌──┐┌──┐
> │ A││ B│
> │  ││  │
> │  ││  │
> └──┘└──┘
>
> "ABD"
> "CCD":
> ┌───┐┌───┐┌───┐
> │ A ││ B ││ D │
> │   ││   ││   │
> │   ││   ││   │
> └───┘└───┘│   │
> ┌┐│   │
> │ C  ││   │
> │││   │
> └┘└───┘
>
> "AaBb":
> ┌───┐┌─┐┌───┐┌─┐
> │ A ││ ││ B ││ │
> │   ││ ││   ││ │
> │   ││ ││   ││ │
> └───┘└─┘└───┘└─┘
>
> "  b  "
> "aABCc":
> ┌───┐
> └───┘
> ┌─┐┌───┐┌───┐┌───┐┌─┐
> │ ││ A ││ B ││ C ││ │
> │ ││   ││   ││   ││ │
> │ ││   ││   ││   ││ │
> └─┘└───┘└───┘└───┘└─┘
>
>
>
>
> On 19 Mar 2015, at 15:34, Benjamin Root  wrote:
>
> two problems with that: 1) that really doesn't make me want to use this
> approach, especially since I wouldn't know what ratios I would want in the
> first place. 2) it can't tell if I want a horizontal or vertical colorbar,
> whereas the lower-case notation could have some logic to auto-detect the
> user's intent (e.g., all lower-case letters in the last row
> indicates horizontal bars). It would also allow us to return the plotting
> axes separate from the colorbar axes, which is how axes_grid1 does it, and
> it is very nice that way.
>
> On Thu, Mar 19, 2015 at 6:31 AM, Nicolas P. Rougier <
> nicolas.roug...@inria.fr> wrote:
>
> I think you could specify colorbars using: ["AB"]
> (B is a vertical colorbar, 1/10 of total width)
>
> Nicolas
>
>
>
> > On 18 Mar 2015, at 18:52, Eric Firing  wrote:
> >
> > On 2015/03/18 7:42 AM, Benjamin Root wrote:
> >> A thought... could this perhaps be extended somehow to specify colorbars
> >> in the layout?
> >
> > A lower-case letter could indicate a colorbar-size Axes:
> >
> > layout = ["ABc",
> >   "DE ",
> >   "ff "]
> >
> > would put a vertical think axes to the right of B, and a double-wide
> > hoizontal one below D and E.
> >
> > All of this seems like an alternative API for gridspec and axes_grid1.
> >
> > I am concerned about ending up with too many ways to do things, but with
> > subtle differences.
> >
> > How much control over spacing and sizing would be provided by kwargs or
> > other adjustment mechanisms?  How would this relate to subplot_params?
> >
> > Eric
> >
> >
> >
> >
> --
> > Dive into the World of Parallel Programming The Go Parallel Website,
> sponsored
> > by Intel and developed in partnership with Slashdot Media, is your hub
> for all
> > things parallel software development, from weekly thought leadership
> blogs to
> > news, videos, case studies, tutorials and more. Take a look and join the
> > conversation now. http://goparallel.sourceforge.net/
> > ___
> > Matplotlib-devel mailing list
> > Matplotlib-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
>
>
> --
> Dive into the World of Parallel Programming The Go Parallel Website,
> sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for
> all
> things parallel software development, from weekly thought leadership blogs
> to
> news, videos, case studies, tutorials and more. Take a look and join the
> conversation now. http://goparallel.sourceforge.net/
> ___
> Matplotlib-devel mailing list
> Matplotlib-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
>
>
> --
> Dive into the World of Parallel Programming The Go Parallel Website,
> sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for
> all
> things parallel software development, from weekly thought leadership blogs
> to
> news, videos, case studies, tutorials and more. Take a look and join the
> conversation now. http://goparallel.sourceforge.net/
> ___
> Matplotlib-devel mailing list
> Matp

Re: [matplotlib-devel] Compile Matplotlib for Android

2015-04-25 Thread Achyut Rastogi
I have made some progress with this, I found a incomplete recipe written by
some body. So the next step for me is to read the python-for-android's
distribute.sh file so I can get a better understanding of the template they
provide. I am slow though because less time and will power.

On Sun, Apr 26, 2015 at 2:29 AM, Thomas Caswell  wrote:

> Sorry this never got a response.  I also have no idea where to start, but
> mpl depends an numpy (which has significant c code) and a number of c
> extensions internally (Agg for rasterization, freetype for font rendering).
>
> I would suggest starting with figuring out how to compile numpy as it is
> required and I suspect simpler to compile.
>
> Tom
>
> On Sun, Mar 29, 2015 at 9:19 AM Achyut Rastogi 
> wrote:
>
>> Hello,
>> I want to compile matplotlib for Android, but I really don't have any
>> clue where to start, well I have already stated with learning SL4A, also
>> inclement sir(Alexander Taylor) says that its already been done by someone
>> but I couldn't find it at all so if somebody has any information about it
>> please post it here, also if you have anything else that may help in this,
>> please post that here too.
>> If somebody is interested in this, they can check my progress here
>> .
>> Lastly, Thank you very much for all the informative comments on the
>> thread 'Kivy backend', that really helped me a lot in writing  my proposal.
>>
>> --
>> Dive into the World of Parallel Programming The Go Parallel Website,
>> sponsored
>> by Intel and developed in partnership with Slashdot Media, is your hub
>> for all
>> things parallel software development, from weekly thought leadership
>> blogs to
>> news, videos, case studies, tutorials and more. Take a look and join the
>> conversation now. http://goparallel.sourceforge.net/
>> ___
>> Matplotlib-devel mailing list
>> Matplotlib-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>>
>
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel