You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Taken from here, I found the following ticks (from plt.semilogy([1.5, 50])):
Not informative enough. I wish there was an easy way to set_minor_formatter such that say e.g 2x10^0, 3x10^0 would have been displayed. I tried to use (full MWE this time):
But I'm sure it is not very versatile. It produces:
Which is not bad.
Proposed solution
I'd like to first explain in the docs / fix the behavior of set_minor_formatter(ticker.LogFormatter(base=10, labelOnlyBase=True)). 2ndly, I'd like to discuss the possibility of adding tick labels as shown above, because I think I'm not the only one that was not satisfied by this default behavior.
The text was updated successfully, but these errors were encountered:
Problem
Taken from here, I found the following ticks (from
plt.semilogy([1.5, 50])
):Not informative enough. I wish there was an easy way to
set_minor_formatter
such that say e.g2x10^0
,3x10^0
would have been displayed. I tried to use (full MWE this time):But it changed nothing. OTH I was capable to obtain my desired output with:
But I'm sure it is not very versatile. It produces:
Which is not bad.
Proposed solution
I'd like to first explain in the docs / fix the behavior of
set_minor_formatter(ticker.LogFormatter(base=10, labelOnlyBase=True))
. 2ndly, I'd like to discuss the possibility of adding tick labels as shown above, because I think I'm not the only one that was not satisfied by this default behavior.The text was updated successfully, but these errors were encountered: