Cara menambah ukuran plot di matplotlib
Anda dapat menggunakan sintaks berikut untuk menambah ukuran satu plot di Matplotlib:
import matplotlib. pyplot as plt #define figure size in (width, height) for a single plot plt. figure (figsize=(3,3))
Dan Anda bisa menggunakan sintaks berikut untuk meningkatkan ukuran semua plot Matplotlib di buku catatan:
import matplotlib. pyplot as plt #define figure size in (width, height) for all plots plt. rcParams [' figure.figsize '] = [10, 7]
Contoh berikut menunjukkan cara menggunakan sintaksis ini dalam praktiknya.
Contoh 1: Meningkatkan ukuran satu plot Matplotlib
Misalkan kita membuat plot garis berikut di Matplotlib:
import matplotlib. pyplot as plt #define x and y x = [1, 6, 10] y = [5, 13, 27] #create plot of x and y plt. plot (x, y) plt. show ()
Secara default, (lebar, tinggi) plot Matplotlib adalah (6.4, 4.8).
Namun, kita dapat menggunakan sintaks berikut untuk meningkatkan ukuran plot ke dimensi yang diinginkan:
import matplotlib. pyplot as plt #define plot size plt. figure (figsize=(5,8)) #define x and y x = [1, 6, 10] y = [5, 13, 27] #create plot of x and y plt. plot (x, y) plt. show ()
Contoh 2: Tingkatkan ukuran semua plot Matplotlib
Kode berikut memperlihatkan cara mengatur ukuran plot untuk semua plot Matplotlib di buku catatan:
import matplotlib. pyplot as plt #define plot size for all plots plt. rcParams [' figure.figsize '] = [10, 4] #define first dataset x = [1, 6, 10] y = [5, 13, 27] #create first plot plt. plot (x, y) plt. show () #define second dataset x2 = [1, 6, 10] y2 = [5, 19, 12] #create second plot plt. plot (x2, y2) plt. show ()
Perhatikan bahwa kedua plot memiliki lebar dan tinggi yang ditentukan oleh argumen rcParams .
Sumber daya tambahan
Cara menyesuaikan ukuran penanda di Matplotlib
Cara mengubah ukuran font di Matplotlib
Cara menyesuaikan ketebalan garis di Matplotlib