matplotlib ist das Standard-Paket zum Erstellen von wissenschaftlichen 2-dimensionalen statischen Graphiken. Die grundlegende Struktur in matplotlib ist figure, eine leere graphische Fläche, die mit Linien, Balken, Punkten, Beschriftungen und Axen befüllt werden kann. Der fertige Plot kann dann in diversen Formaten abgespeichert oder auf dem Bildschirm angezeigt werden.
# import the package and give it the shorter name 'plt'
%matplotlib inline
import matplotlib.pyplot as plt
# create some dummy data
x = range(1, 10)
# make a simple scatter plot of the data
plt.plot(x, x, c="green", linestyle='', marker='+')
matplotlib.pyplot.plot.