Python matplotlib繪製箱線圖簡單實現

單組數據箱線圖:python from matplotlib import pyplot as plt dataArray=[5,6,2,4,8,9,10,2,4,5,3,5,15] plt.boxplot(dataArray,labels=["A"]) plt.title("Box-plot Test") plt.savefig("a.png") plt.show() 運行結果:bash 多組數
相關文章
相關標籤/搜索