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
semilogx, semilogy, loglog, LogScale, and SymmetricalLogScale used to take keyword arguments that depends on the axis orientation ("basex" vs "basey", "subsx" vs "subsy", "nonposx" vs "nonposy"); these parameter names have been removed in favor of "base", "subs", "nonpositive". This removal also affects e.g. ax.set_yscale("log", basey=...) which must now be spelled ax.set_yscale("log", base=...).
The change from "nonpos" to "nonpositive" also affects LogTransform, InvertedLogTransform, SymmetricalLogTransform, etc.
There may be more issues further down the road
The text was updated successfully, but these errors were encountered:
Gives error: init() got an unexpected keyword argument 'nonposx' due to:
self.axp.set_xscale('log', nonposx='clip')
in plot_mt_response.py
The reason is due to changes in the Matplotlib API
There may be more issues further down the road
The text was updated successfully, but these errors were encountered: