Zweck von "%matplotlib inline"
Der Zweck von "%matplotlib inline" in Python ist, Matplotlib-Diagramme innerhalb des Jupyter-Notebooks anzuzeigen.
Ein Code-Schnipsel sieht wie folgt aus:
%matplotlib inline
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()
Dieser Code importiert zunächst die Matplotlib-Bibliothek, erstellt eine einfache Darstellung und zeigt sie dann im Notebook an.
Alternativ können Sie %matplotlib notebook
für interaktive Diagramme verwenden.