Matplotlib'deki alt noktalara metin nasıl eklenir
Matplotlib’deki belirli alt noktalara metin eklemek için aşağıdaki sözdizimini kullanabilirsiniz:
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 ')
Bu özel örnek, (x,y) koordinatlarındaki (1,5,20) ilk alt çizime metin ve (x,y) koordinatlarındaki (2,10) ikinci alt çizime metin ekler.
Aşağıdaki örnek, bu sözdiziminin pratikte nasıl kullanılacağını gösterir.
Örnek: Matplotlib’deki Alt Grafiklere Metin Ekleme
Aşağıdaki kod, Matplotlib’de iki satır ve bir sütundan oluşan bir düzende düzenlenmiş iki alt grafiğin nasıl oluşturulacağını gösterir:
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 ')
Her alt grafiğin belirli konumlarına metin eklemek için aşağıdaki sözdizimini kullanabiliriz:
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 ')
Belirttiğimiz (x,y) koordinatlarındaki her alt noktaya metin eklendiğini unutmayın.
İlk alt grafiği referans almak için ax[0] ve ikinci alt grafiği referans almak için ax[1] kullandığımızı unutmayın.
Daha sonra (x, y) koordinatlarını ve ayrıca her alt grafikte kullanılacak belirli metni belirtmek için text() işlevini kullandık.
Ek kaynaklar
Aşağıdaki eğitimler Matplotlib’deki diğer ortak görevlerin nasıl gerçekleştirileceğini açıklamaktadır:
Matplotlib’deki alt noktalara başlık nasıl eklenir
Matplotlib’de alt grafik boyutu nasıl ayarlanır
Matplotlib alt noktaları arasındaki boşluk nasıl ayarlanır?