So fügen sie text zu unterhandlungen in matplotlib hinzu
Sie können die folgende Syntax verwenden, um Text zu bestimmten Unterhandlungen in Matplotlib hinzuzufügen:
import matplotlib. pyplot as plt #define subplot layout fig, ax = plt. subplots (2, 1, figsize=(7,4)) #add text at specific locations in subplots ax[0]. text (1.5, 20, ' Here is some text in the first subplot ') ax[1]. text (2, 10, ' Here is some text in the second subplot ')
In diesem speziellen Beispiel wird Text zum ersten Teilplot an den (x,y)-Koordinaten (1,5,20) und Text zum zweiten Teilplot an den (x,y)-Koordinaten (2,10) hinzugefügt.
Das folgende Beispiel zeigt, wie diese Syntax in der Praxis verwendet wird.
Beispiel: Text zu Unterhandlungen in Matplotlib hinzufügen
Der folgende Code zeigt, wie man in Matplotlib zwei Unterplots erstellt, die in einem Layout mit zwei Zeilen und einer Spalte angeordnet sind:
import matplotlib. pyplot as plt #define subplot layout fig, ax = plt. subplots (2, 1, figsize=(7,4)) fig. tight_layout () #define data x = [1, 2, 3] y = [7, 13, 24] #create subplots ax[0]. plot (x,y,color=' red ') ax[1]. plot (x,y,color=' blue ')
Wir können die folgende Syntax verwenden, um an bestimmten Stellen in jeder Nebenhandlung Text hinzuzufügen:
import matplotlib. pyplot as plt #define subplot layout fig, ax = plt. subplots (2, 1, figsize=(7,4)) fig. tight_layout () #define data x = [1, 2, 3] y = [7, 13, 24] #create subplots ax[0]. plot (x,y,color=' red ') ax[1]. plot (x,y,color=' blue ') #add text at specific locations in subplots ax[0]. text (1.5, 20, ' Here is some text in the first subplot ') ax[1]. text (2, 10, ' Here is some text in the second subplot ')
Beachten Sie, dass jedem Unterplot an den von uns angegebenen (x,y)-Koordinaten Text hinzugefügt wurde.
Beachten Sie, dass wir ax[0] verwendet haben, um auf die erste Unterhandlung zu verweisen, und ax[1] , um auf die zweite Unterhandlung zu verweisen.
Anschließend verwendeten wir die Funktion text() , um die (x, y)-Koordinaten sowie den spezifischen Text anzugeben, der in jeder Unterhandlung verwendet werden soll.
Zusätzliche Ressourcen
Die folgenden Tutorials erklären, wie Sie andere häufige Aufgaben in Matplotlib ausführen:
So fügen Sie Unterhandlungen in Matplotlib einen Titel hinzu
So passen Sie die Unterplotgröße in Matplotlib an
So passen Sie den Abstand zwischen Matplotlib-Unterplots an