import matplotlib.pyplot as pl %matplot inline def learning_curves(X_train, y_train, X_test, y_test): \"\"\" Calculates the performance of several models with varyin
You can still save the figure by fig.savefig()
If you want to view it on the web page, you can try
from IPython.display import display display(fig)