本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
创建excel在桌面
importpandasaspd df=pd.DataFrame() df.to_excel('C:/Users/Administrator/Desktop/output.xlsx') print("done!")
注意要建立pip install openpyxl 包
读取excel
board=pd.read_excel('C:/Users/Administrator/Desktop/data.xlsx', engine='openpyxl') print(board.shape) print(board)
画图
importmatplotlib.pyplotasplt board.plot.line(x='省份',y='死亡') plt.show()
花式绘图
board.plot.bar(x='省份',y=['死亡','现有确诊'],color=['orange','red']) plt.show()