I just upgraded to matplotlib 2.0, and it seems to me that I'm on crazy pills. I am trying to make a log line chart, with the y axis in linear scale and the x axis in log10 scale. Previously, the following code allowed me to pinpoint where I want my ticks and what I want their labels to be:
import matplotlib.pyplot as plt
plt.plot([0.0,5.0], [1.0, 1.0], '--', color='k', zorder=1, lw=2)
plt.xlim(0.4,2.0)
plt.ylim(0.0,2.0)
plt.xscale('log')
plt.tick_params(axis='x',which='minor',bottom='off',top='off')
xticks = [0.4, 0.6, 0.8, 1.0, 1.2, 1.4, 1.6, 1.8, 2.0]
ticklabels = ['0.4', '0.6', '0.8', '1.0', '1.2', '1.4', '1.6', '1.8', '2.0']
plt.xticks(xticks, ticklabels)
plt.show()
But in matplotlib 2.0, this now forces me to get a set of overlapping shortcut labels, where matplotlib apparently wants to automatically create ticks:

But if I comment on the line "plt.xlim (0.4.2.0)" and let it automatically determine the axis limits, there are no overlapping label labels, and I just get the ones I want:

But this does not work, because now I have useless limitations on the x axis.
Any ideas?
: , , , matplotlib. v. 1.5.3. .