How to change seaborn/python default x label position, 0 and 0 in exact bottom corner. I want it in absolut 0 touch each other on leftside.
Asked
Active
Viewed 21 times
0
-
Do you refer to the tick label position? Maybe `ax.margins(x=0)`? Or `ax.set_xlim(xmin=0)`? You could set the default xmargin via `plt.rcParams['axes.xmargin'] = 0`. Note that this won't look well for e.g. scatter plots. – JohanC Feb 19 '22 at 11:04