Rumah > Soal Jawab > teks badan
def huitu_host(nodes,total):
x = np.arange(len(nodes))
plt.figure(figsize=(9,5))
plt.xticks(x,nodes)
plt.bar(x,total,width = 0.5,facecolor = 'yellowgreen',edgecolor = 'white')
for x,y in zip(x,total):
plt.text(x,y,'%.f' % y,ha="center", va="bottom")
plt.show()
return
ringa_lee2017-05-18 10:52:43
color
和edgecolor
Ini semua boleh diluluskan parameter seperti tatasusunan
Cuma nyatakan warna dalam tatasusunan masing-masing
Contoh:
x=np.arange(10)
y=np.arange(10)
plt.bar(x,y,color=['red','green'])