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
As of 2.0b1 and master, semilogy([.2, 2]) gives
i.e. the bottom margin is too small.
Actually, handle_single_margin (in _AxesBase) does the right thing (expand the limits after transforming to plot coordinates), but then passes the limits to LogLocator.view_limits, which undoes all the good work while executing
if vmin <= minpos:
vmin = minpos
(this check was introduced by 426eabc, let's see whether it's still needed...)
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
As of 2.0b1 and master,

semilogy([.2, 2])
givesi.e. the bottom margin is too small.
Actually,
handle_single_margin
(in_AxesBase
) does the right thing (expand the limits after transforming to plot coordinates), but then passes the limits toLogLocator.view_limits
, which undoes all the good work while executing(this check was introduced by 426eabc, let's see whether it's still needed...)
The text was updated successfully, but these errors were encountered: