Hoe titels aan plots in matplotlib toe te voegen


U kunt de volgende syntaxis gebruiken om een titel aan een plot in Matplotlib toe te voegen:

 plt. title (' MyTitle ')

De volgende voorbeelden laten zien hoe u deze syntaxis in de praktijk kunt gebruiken.

Voorbeeld 1: Voeg een titel toe aan de plot

De volgende code laat zien hoe u een titel aan een plot in Matplotlib toevoegt:

 import matplotlib. pyplot as plt

#define x and y
x = [1, 4, 10]
y = [5, 11, 27]

#create plot of x and y
plt. plot (x, y)

#add title
plt. title (' MyTitle ')

Merk op dat u ook de argumenten fontsize en loc kunt gebruiken om respectievelijk de lettergrootte en de locatie van de titel op te geven:

 plt. title (' My Title ', fontsize= 30 , loc=' left ') 

Voorbeeld 2: Een titel toevoegen aan subplots

De volgende code laat zien hoe u de functie set_title( ) gebruikt om individuele subplottitels in Matplotlib op te geven:

 import matplotlib. pyplot as plt

#define subplots
fig, ax = plt. subplots (2, 2)
fig. tight_layout ()

#define subplot titles
ax[0, 0]. set_title (' First Subplot ')
ax[0, 1]. set_title (' Second Subplot ')
ax[1, 0]. set_title (' Third Subplot ')
ax[1, 1]. set_title (' Fourth Subplot ')

Aanvullende bronnen

Hoe de plotgrootte in Matplotlib te vergroten
Hoe de titelpositie in Matplotlib aan te passen
Tekst toevoegen aan Matplotlib-plots
Hoe asbereiken in Matplotlib in te stellen

Einen Kommentar hinzufügen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert