Matplotlib Bar

Vẽ biểu đồ cột trong python (Matplotlib Bar).

Bạn có thể sử dụng hàm bar() để vẽ biểu đồ cột trong python.

Ví dụ

import matplotlib.pyplot as plt
import numpy as np
x = np.array(['Apple','Banana','Chery','Lemon', 'Guava'])
y = np.array([100,200,500,300,600])
plt.bar(x,y)
plt.show()

Kết quả:

 

Ngoài ra bạn còn có thể vẽ biểu đồ cột theo phương ngang (Horizontal Bars). Để vẽ biểu đồ cột theo phương ngang bạn sử dụng hàm barh().

Ví dụ

import matplotlib.pyplot as plt
import numpy as np
x = np.array(['Apple','Banana','Chery','Lemon', 'Guava'])
y = np.array([100,200,500,300,600])
plt.barh(x,y)
plt.show()

Kết quả: