As I have very long string labels and some other shorter labels for one axis, I would like to place the long labels outside and the short labels inside the axis. Is that possible?
A basic example would be this:
fig, ax = plt.subplots()
ax.boxplot(np.random.randn(100), vert=0)
longlabs = ['foofoofoofoofoofoofoo']
shortlabs= ['bar']
ax.yaxis.set_ticklabels(longlabs)
Where/how to place shortlabs
at the inner side of the axis?