anaconda下matplotlib畫散點圖、柱形圖、折線圖、餅圖

import matplotlib.pyplot as plt year = (1950, 1970, 1990, 2010) pop = (2.519, 3.692, 5.263, 6.972) plt.fill_between(year,pop,0,color='green')# 折線圖 # plt.plot(year, pop) # 散點圖 # plt.scatter(year, pop)
相關文章
相關標籤/搜索