我試圖使用pandas.read_excel但我不斷收到「‘模塊’對象有沒有屬性‘read_excel’」在我的終端錯誤,如圖pandas.read_excel爲什麼不運行?
File "read.py", line 9, in <module>
cols = pd.read_excel('laucnty12', 'Poverty Data', index_col='State', \\ na_values=['NA'])
AttributeError: 'module' object has no attribute 'read_excel'
我已經試過pd.read_excel()和pd.io.parsers.read_excel()但得到相同的錯誤。我安裝了python 2.7,熊貓的其他部分可以正常工作,如xls.parse和read_csv。我的代碼如下:
import pandas as pd
from pandas import *
xls = pd.ExcelFile('laucnty12.xls')
data = xls.parse('laucnty12', index_col=None, na_values=['NA'])
cols = pd.read_excel('laucnty12', 'Poverty Data', index_col='State', na_values=['NA'])
print cols
你想要做什麼,xls.parse不能做什麼? (同意,你應該更新熊貓到最新的穩定版本) –