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
set_powerlimits(self, lims)[source]
Sets size thresholds for scientific notation.
(min_exp, max_exp)
A tuple containing the powers of 10 that determine the switchover threshold. Numbers below 10**min_exp and above 10**max_exp will be displayed in scientific notation.
does use scientific notation on the y axis but not the x axis. The the correct description of the actual behaviour seems to be
A tuple containing the powers of 10 that determine the switchover threshold. Numbers with absolute values below 10**(min_exp+1) and above 10**(max_exp+1) will be displayed in scientific notation.
Or it is a bug (would make more sense if the original description were correct).
The text was updated successfully, but these errors were encountered:
Bug report
Documentation says:
However
does use scientific notation on the y axis but not the x axis. The the correct description of the actual behaviour seems to be
Or it is a bug (would make more sense if the original description were correct).
The text was updated successfully, but these errors were encountered: