場(chǎng)景
我想畫(huà)一幅bar圖邻奠,想要有大標(biāo)題酌儒,x和y的標(biāo)題辜妓,每一個(gè)柱圖上面標(biāo)有數(shù)字。
記憶
- x,y的數(shù)據(jù)集
- 畫(huà)bar圖
- title籍滴, x和y的label
- show出來(lái)
核心
import matplotlib.pyplot as plt
x_data = ['1 node and 1 core', '1 node and 8 cores', '2 nodes and 8 cores']
y_data = [275.92 ,219.332 ,236.87]
plt.bar(x_data, y_data, label="time")
plt.title("Assignment1")
for x,y in enumerate(y_data):
plt.text(x, y, "%s"%y, ha='center', va='bottom')
plt.xlabel("resources")
plt.ylabel("second")
plt.show()