Como adicionar texto a subtramas no matplotlib
Você pode usar a seguinte sintaxe para adicionar texto a subparcelas específicas no Matplotlib:
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 ')
Este exemplo específico adiciona texto ao primeiro subtrama nas coordenadas (x,y) (1,5,20) e texto ao segundo subtrama nas coordenadas (x,y) (2,10) .
O exemplo a seguir mostra como usar essa sintaxe na prática.
Exemplo: Adicionar texto a subparcelas no Matplotlib
O código a seguir mostra como criar duas subparcelas no Matplotlib, organizadas em um layout com duas linhas e uma coluna:
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 ')
Podemos usar a seguinte sintaxe para adicionar texto em locais específicos em cada subtrama:
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 ')
Observe que o texto foi adicionado a cada subparcela nas coordenadas (x,y) que especificamos.
Observe que usamos ax[0] para fazer referência à primeira subtrama e ax[1] para fazer referência à segunda subtrama.
Em seguida, usamos a função text() para especificar as coordenadas (x, y), bem como o texto específico a ser usado em cada subtrama.
Recursos adicionais
Os tutoriais a seguir explicam como realizar outras tarefas comuns no Matplotlib:
Como adicionar um título às subparcelas no Matplotlib
Como ajustar o tamanho da subparcela no Matplotlib
Como ajustar o espaçamento entre subtramas do Matplotlib