一.顯示數(shù)據(jù)或顯示excel表的內(nèi)容
import pandas as pd
# 產(chǎn)生數(shù)據(jù)
df = pd.DataFrame(3 * np.random.rand(4), index=['python', 'java', 'c++', 'c'], columns=['num'])
#或是打開現(xiàn)有的excel文件
#df=pd.read_excel('compl.xlsx ',index_col=0) #第0列數(shù)據(jù)做為索引
print(df)
運行結(jié)果如下:
num
python 2.685118
java 1.346390
c++ 1.677223
c 2.341827
二.導(dǎo)入相關(guān)繪圖模塊,畫出折線圖、柱狀圖、餅圖
import matplotlib.pyplot as plt
import pandas as pd
#import numpy as np
df = pd.DataFrame(3 * np.random.rand(4), index=['python', 'java', 'c++', 'c'], columns=['num'])
#或是打開現(xiàn)有的excel文件
#df=pd.read_excel('compl.xlsx ',index_col=0) #第0列數(shù)據(jù)做為索引
df.plot.pie(subplots=True)
df.plot.bar()
df.plot()
plt.show()
運行結(jié)果如下:
聯(lián)系客服