matplotlib 樹狀圖

import numpy as np import matplotlib.pyplot as plt k = 16 x = np.arange(k)#x軸的範圍 y = np.random.rand(k)#隨機生成個數作爲柱狀圖的高度值 plt.bar(x,y)#畫出x 和 y的柱狀圖 for x,y in zip(x,y):#增加數值 #在樹狀圖的頂部繪製數值居中靠底邊對齊 水平 垂直
相關文章
相關標籤/搜索