5

Here is a question about turning off the ticks on a given side of a set of axes by using the tick_params method. I want to change the top and right properties to off by default in my matplotlibrc but I don't see how that is to be done, as the ticks section of the matplotlibrc file deals with things in terms of xtick and ytick. What am I missing?

Community
  • 1
  • 1
Alton Campbell
  • 226
  • 2
  • 7

2 Answers2

2

After sleuthing around on the matplotlib github, I found what I was looking for: the upcoming version 2.x branch, at the time I am writing this, has xtick.top, etcetera, as parameters in the new matplotlibrc template.

So the answer is that at the time of this writing, that functionality may not be available for templates, and @user2927356's method may be all I can use until matplotlib 2.x comes out.

Alton Campbell
  • 226
  • 2
  • 7
1

I'm pretty new to matplotlib myself, but i belive you can do something like this:

pl.tick_params(bottom="off", top="off")
The Dude
  • 1,088
  • 7
  • 16
  • 30