Re: [Matplotlib-users] Are matplotlib paths equivalent to svg paths?

2015-03-05 Thread Jason Moore
Ahh! Yes that is likely it. I assumed that relative dimensions were always with respect to the previous point, but they are always with respect to the previous non-control point. Thanks! Jason moorepants.info +01 530-601-9791 On Wed, Mar 4, 2015 at 10:36 PM, Nicolas P. Rougier < nicolas.roug...

Re: [Matplotlib-users] Bar plot align right?

2015-03-05 Thread Thomas Caswell
This is a bit hacky, but there is apparently no validation that 'width' is positive. If you set the `width` kwarg to negative you effectively get to set the right edge. Tom On Thu, Mar 5, 2015 at 11:09 AM J. Daniel Fenn wrote: > The bar plot options allow you to set align='center' or align='ed

Re: [Matplotlib-users] Plotting style

2015-03-05 Thread Eric Firing
On 2015/03/05 6:11 AM, Marin GILLES wrote: > Hello everyone, > After working a bit on the styles, I noticed that some parameters could > not be modified using an rc or style file (for example, turning off the > right, left, up or down axis). I kind of saw how to do it using the > |Axis.spine.set_vi

Re: [Matplotlib-users] Plotting style

2015-03-05 Thread Thomas Caswell
the rcparams are stored in a sub-class of dict which does both name and value validation on the way in. This is controlled by the class-level attribute `validate` (which is a dict mapping from key-name -> validation function). In principle you could update this dict to add rcparams on the fly, ho

[Matplotlib-users] Bar plot align right?

2015-03-05 Thread J. Daniel Fenn
The bar plot options allow you to set align='center' or align='edge' But when it aligns on the edge, it always does left align. I can't find any documentation that allows me to align it as a right align. Is this possible?

Re: [Matplotlib-users] Plotting style

2015-03-05 Thread Marin GILLES
Le 04/03/2015 23:31, Marin GILLES a écrit : Le 04/03/2015 22:46, Yuxiang Wang a écrit : Hi Marin, +1 for the idea of specific papers. For example, all PLOS require the same figure format and I have my own config file. I'd be more than happy to dig into it and try my best to contribute. Shawn