Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork8.1k
Closed
Labels
Milestone
Description
Consider:
plt.plot(10001 + np.arange(10), 10001 + np.arange(10))plt.setp(plt.gca().get_yticklabels(), visible=False)plt.show()Thex axis is labeled 0..9 + 1.0001e4. I'd suggest changing this to 1..10 + 1.0000e4, which is IMO much more legible.
They axis doesn't show the tick labels, as expected, but the offset indicator ("+1.0001e4") is still there.setp(get_{x,y}ticklabels(), visible=False) is certainly a commonly used approach (e.g. bySubplotBase.label_outer()).
What I believe the correct solution, which is also setoffsetText (which can be obtained byget_offset_text()) to invisible, is a bit obscure (and not mentioned in the docs).