To plot matplotlib graphs inline in Jupyter-notebook, do this:
import matplotlib.pyplot as plt
%matplotlib inline
Now, plt.plot(...) while show the graph inline.
import matplotlib.pyplot as plt
%matplotlib inline
Now, plt.plot(...) while show the graph inline.
No comments:
Post a Comment