The matplotlib docs here and here confirm that matplotlib.pyplot.hold has been deprecated. Consequently with matplotlib3.0.0 cvglmnetPlot.py throws an error due to line 83: plt.hold(True).
Also, plt.show() at the very end is commented out. These two glitches cause the In [25]: cvglmnetPlot(cvmfit) line in the tutorial example for the Linear Regression: Multiresponse Gaussian Family to fail.
The matplotlib docs here and here confirm that
matplotlib.pyplot.hold
has been deprecated. Consequently with matplotlib3.0.0 cvglmnetPlot.py throws an error due to line 83:plt.hold(True)
.Also,
plt.show()
at the very end is commented out. These two glitches cause theIn [25]: cvglmnetPlot(cvmfit)
line in the tutorial example for the Linear Regression: Multiresponse Gaussian Family to fail.