SyntaxFix
Write A Post
Hire A Developer
Questions
Here is an alternative solution that I found on the matplotlib mailing list:
import matplotlib.pylab as plt x = range(1000) ax = plt.axes() ax.semilogx(x, x) ax.xaxis.set_ticks_position('none')