My axis labels often look not good (too close to tick labels) when I use Matplotlib.
How to set distance between tick labels and axis label? I just need to enlarge distance between "Number of stars" label and corresponding tick labels. Maybe latex \vspace{}
is working but I don't know how to implement it. fig.subplots_adjust(left=)
is not a solution.
labelpad
parameter in theax.set_ylabel()
method. This takes a number of points to be used as spacing between the axis and the corresponding label. – Futtock