[Matplotlib-users] matplotlibrc axes.formatter.useoffset parameter

2014-04-01 Thread Julian Irwin
Hello, I noticed that in the matplotlib source code in lib/matplotlib/rcsetup.py there is a parameter called axes.formatter.useoffset that defaults to True. However, in the documentation the example rc file doesn't include this parameter, and if I try to use it I get the exception Bad key

[Matplotlib-users] GridSpec.GridSpecFromSubplotSpec.update()

2015-03-30 Thread Julian Irwin
Hey, I am making a plot using nested GridSpec objects. I would like to adjust the space between the the different GridSpecs. This works fine if I do something like: gs0 = gridspec.GridSpec(a, b) gs1 = gridspec.GridSpec(c, d) gs0.update(...) gs1.update(...) However, If I use

[Matplotlib-users] Set Ticker useOffset to False in matplotlibrc

2015-02-21 Thread Julian Irwin
In the Ticker API docs http://matplotlib.org/api/ticker_api.html the following is listed as a valid rc parameter: axes.formatter.useoffset=False Is there a way to put this in my matplotlibrc? I have tried the obvious choice: axes.formatter.useoffset : False but that give the error

Re: [Matplotlib-users] GridSpec.GridSpecFromSubplotSpec.update()

2015-04-03 Thread Julian Irwin
Hey, Just checking if I sent this out properly. Can someone reply to let me know that this was seen, even if you don't have an answer? Thanks, Julian On Mon, Mar 30, 2015 at 10:10 PM, Julian Irwin julian.ir...@gmail.com wrote: Hey, I am making a plot using nested GridSpec objects. I would

[Matplotlib-users] Set matplotlibrc color cycle to custom colors using axes.prop_cycle (v1.5)

2015-12-20 Thread Julian Irwin
Hi, I'm trying to set my default color cycle in my matplotlibrc using axes.prop_cycle. The documentation (as far as I could find...) only gives examples like axes.prop_cycle: cycler('color', 'bgrcmyk') And then the comment below says, cryptically: # as list of string colorspecs: # single

Re: [Matplotlib-users] Set matplotlibrc color cycle to custom colors using axes.prop_cycle (v1.5)

2015-12-21 Thread Julian Irwin
. Don't drop the > quotes. > > Ben Root > > On Mon, Dec 21, 2015 at 12:51 AM, Thomas Caswell <tcasw...@gmail.com> > wrote: > >> Not at a computer to test, but try dropping the quotes. >> >> On Sun, Dec 20, 2015, 20:56 Julian Irwin <julian.ir...@gmail.com&g

[Matplotlib-users] Hide overlapping tick marks in axes corner

2016-01-28 Thread Julian Irwin
am using now). Here is a screenshot of what I'm talking about: [image: Inline image 1] I know this looks minor, but it is quite obvious on some plots and I'd really like to get rid of it. Thanks, Julian Irwin