連接:https://www.cnblogs.com/skying555/p/5914391.htmlhtml
注意點:1. pandas的數據類型dataframe 和 seriesspa
2. pandas的plot方法圖像可視化excel
import matplotlib.pyplot as plt from pandas import DataFrame,Series Series([4,5,7]).plot() plt.show()
打開plt, 加上plt.show()便可code
import pandas as pd import matplotlib.pyplot as plt df = pd.read_excel("beta.xlsx", header=1) # 讀取excel 表頭在第二行 # df.head(10) # 讀取excel的前10條數據 # print(df.tail(10)) # 讀取excel的後10條數據 # print(df.columns) # 讀取excel的表頭名稱 # print(df["USD"]) # 讀取更名稱的整列數據 # print(len(df)) # 讀取數據的條數 # pd.options.display.float_format = "{:,.3f}".format # 格式化數據保留3位小數 # print(df.describe()) # 格式化數據配合上面的format # print(df[df.USD < 200]) # 條件篩選 print(df.iloc[8]) # 表頭與第8條數據一塊兒顯示 df.plot(x="RMB", y="USD") # 設置x,y軸 plt.show() # 顯示圖像