2015-05-14 81 views
1
import pandas as pd 
numbers = {1,2,3,4,5} 
ser = pd.Series(numbers) 
print ser 

我在python for pandas系列中編寫了這段代碼。但它給這個對象熊貓沒有屬性名稱系列

"AttributeError: 'module' object has no attribute 'Series'"

請幫我

+4

你有沒有一個名爲'pandas.py'的python文件? – EdChum

回答

1

http://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.html

data : array-like, dict, or scalar value Contains data stored in Series

不要以爲一組數爲陣列狀,所以纔將其轉換爲一個列表調用pd.Series前。

import pandas as pd 
numbers = {1,2,3,4,5} 
ser = pd.Series(list(numbers)) 

輸出:

print ser 

0 1 
1 2 
2 3 
3 4 
4 5 
+0

嗨利亞姆,我仍然得到那個錯誤 –

+1

嗨利亞姆,錯誤是我保存該文件作爲pandas.py感謝您的幫助 –

5

的錯誤在我的問題是文件名。

我將文件保存爲pandas.py,這就是爲什麼我得到錯誤。

相關問題