Seaborn / Matplotlib: How To Repress Scientific Notation In Factorplot Y-axis
Simple example below for this issue which I just can't solve. N.B. Some other Seaborn plotting methods seems to have arguments to repress the exponential form but seemingly not fa
Solution 1:
It looks like the following line solves the issue:
plt.ticklabel_format(style='plain', axis='y')
Here is the documentation link.
Post a Comment for "Seaborn / Matplotlib: How To Repress Scientific Notation In Factorplot Y-axis"