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
I was trying to make 3d clustering similar to Towards Data Science Tutorial. I first thought fig.show()
might be correct, but got the same warning...
Briefly viewed Matplot3d.. but then I tried plt.show()
and it displayed my 3d model exactly as anticipated. I guess it makes sense too.
This would be equivalent to your pl.show()
Using python 3.5 and Jupyter Notebook