Matplotlib Subplot

Matplotlib Subplot là gì? Matplotlib Subplot là dùng để vẽ nhiều đồ thị hoặc nhiều biểu đồ trong cùng một figure.

subplot() là một hàm trong thư viện Matplotlib.Hàm subplot() dùng để vẽ nhiều biểu đồ trong một figure trong python.

Ví dụ vẽ 2 biểu đồ plots trong một figure như sau:

Ví dụ

import matplotlib.pyplot as plt
import numpy as np

#plot 1:
x = np.array([2, 1, 3, 5])
y = np.array([3, 9, 1, 15])

plt.subplot(1, 2, 1)
plt.plot(x,y)
plt.title("plot1")

#plot 2:
x = np.array([8, 1, 5, 3])
y = np.array([5, 20, 25, 50])

plt.subplot(1, 2, 2)
plt.plot(x,y)
plt.title("plot2")

plt.show()

Kết quả