I have a figure with a lot of subplot, such that the last ticklabel of an axis is written over the first tick label of the next one. See example here
As I want to keep the spacing between the subplots as I set it, I would like to have a different alignment depending on the tick, as it could be produced by :
plt.xticks([0], ha = 'left')
plt.xticks([0.2,0.4], ha = 'center')
plt.xticks([0.6], ha = 'right')
Using that, only the last call of xticks is shown on the figure. In another way, the idea is to align first and last tick labels such that they stay within the subplot.
Hope I'm clear !
Any ideas ?