In matplotlib, sometime the major-ticks are too close to each other in a loglog plot. Instead of setting them manually, can one use something similar to MaxNLocator to put ticks at n-locations in a log scale?

import numpy as np
import pylab as p

x=np.logspace(1,20,10)

fig=p.figure()
ax1=fig.add_subplot(121)
ax1.loglog(x,x,'o')
ax2=fig.add_subplot(122)
ax2.loglog(x,x,'o')
fig.show()

Figure

link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

For each axis you could set a LogLocator:

ax.xaxis.set_major_locator(ticker.LogLocator(base = 1000.0))

enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.