《Python數據可視化編程實戰》

《Python數據可視化編程實戰》  繪製並定製化圖表 3.1 柱狀圖、線形圖、堆積柱狀圖 from matplotlib.pyplot import *   x = [1,2,3,4,5,6] y = [3,4,6,7,3,2]   #create new figure figure()   #線 subplot(2,3,1) plot(x,y)   #柱狀圖 subplot(2,3,2) ba
相關文章
相關標籤/搜索