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
I'm using tools/analysis/m6plot.py as a base for my own analysis, probably with newer python+matplotlib versions than this script was originally developed for. This is a running log of issues as I encounter them.
matplotlib.axes.Axes.set_axis_bgcolor has been deprecated since matplotlib 2.0. All cases of axis.set_axis_bgcolor() need to be replaced with axis.set_facecolor()
in VerticalSplitScale.py, line 33 mscale.ScaleBase.__init__(self) needs to be replaced with mscale.ScaleBase.__init__(self, axis)
I'm using
python 3.6.9
matplotlib 3.1.0
and mostly running interactively in a jupyter lab environment.
The text was updated successfully, but these errors were encountered:
I'm using tools/analysis/m6plot.py as a base for my own analysis, probably with newer python+matplotlib versions than this script was originally developed for. This is a running log of issues as I encounter them.
mscale.ScaleBase.__init__(self)
needs to be replaced withmscale.ScaleBase.__init__(self, axis)
I'm using
and mostly running interactively in a jupyter lab environment.
The text was updated successfully, but these errors were encountered: