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
When using plt.scatter with log-scaled axes, order of calls is important: if axes are set to log scale before plt.scatter is called, margins of the plot are huge:
When using
plt.scatter
with log-scaled axes, order of calls is important: if axes are set to log scale beforeplt.scatter
is called, margins of the plot are huge:Actual outcome

Expected outcome
When
plt.scatter
is called before axes are set to log scale, it looks normal:print(matplotlib.get_backend())
): module://ipykernel.pylab.backend_inlineIn some earlier version of matplotlib (or something else) it worked as expected with any order of calls, but now I am getting this problem.
The text was updated successfully, but these errors were encountered: