Python是一個(gè)非常強(qiáng)大的編程語言,它的繪圖功能也是非常便捷的。今天我們來學(xué)習(xí)一下如何使用Python繪制對比圖。
import matplotlib.pyplot as plt # 設(shè)置數(shù)據(jù) year = ['2018', '2019', '2020'] sales = [1000, 1200, 1300] profits = [200, 300, 500] # 繪圖 plt.plot(year, sales, label='Sales') plt.plot(year, profits, label='Profits') # 設(shè)置標(biāo)簽 plt.xlabel('Year') plt.ylabel('Amount') plt.title('Sales vs Profits') plt.legend() # 顯示圖形 plt.show()
首先我們需要導(dǎo)入`matplotlib.pyplot`庫,然后設(shè)置數(shù)據(jù),這里我們用兩個(gè)列表來分別表示銷售額和利潤。接著調(diào)用`plt.plot()`函數(shù)來繪圖。
然后我們需要設(shè)置一些標(biāo)簽,比如X軸和Y軸的標(biāo)簽、圖形標(biāo)題、圖例等。最后我們調(diào)用`plt.show()`來顯示圖形。以下是繪圖結(jié)果:
可以看到圖形非常直觀和簡潔,我們可以很清楚地看到2018年到2020年的銷售額和利潤的變化情況。
上一篇php json 換行