2017-08-26 82 views
2

現在,我分析泰坦尼克號對Kaggel的挑戰。 我的代碼是這樣的: code熊貓read_csv不會正確加載逗號分隔的CSV

但我的理想輸出是: ideal output

所以,我在去年的代碼是

df["Age"].fillna(df.Age.median(), inplace=True) 

和錯誤發生

--------------------------------------------------------------------------- 
KeyError         Traceback (most recent call last) 
/Users/XXXi/anaconda/envs/py36/lib/python3.6/site-packages/pandas/indexes/base.py in get_loc(self, key, method, tolerance) 
    2133    try: 
-> 2134     return self._engine.get_loc(key) 
    2135    except KeyError: 

pandas/index.pyx in pandas.index.IndexEngine.get_loc (pandas/index.c:4433)() 

pandas/index.pyx in pandas.index.IndexEngine.get_loc (pandas/index.c:4279)() 

pandas/src/hashtable_class_helper.pxi in pandas.hashtable.PyObjectHashTable.get_item (pandas/hashtable.c:13742)() 

pandas/src/hashtable_class_helper.pxi in pandas.hashtable.PyObjectHashTable.get_item (pandas/hashtable.c:13696)() 

KeyError: 'Age' 

During handling of the above exception, another exception occurred: 

KeyError         Traceback (most recent call last) 
<ipython-input-4-9763f0a9951c> in <module>() 
----> 1 df["Age"].fillna(df.Age.median(), inplace=True) 

/Users/XXXi/anaconda/envs/py36/lib/python3.6/site-packages/pandas/core/frame.py in __getitem__(self, key) 
    2057    return self._getitem_multilevel(key) 
    2058   else: 
-> 2059    return self._getitem_column(key) 
    2060 
    2061  def _getitem_column(self, key): 

/Users/XXXi/anaconda/envs/py36/lib/python3.6/site-packages/pandas/core/frame.py in _getitem_column(self, key) 
    2064   # get column 
    2065   if self.columns.is_unique: 
-> 2066    return self._get_item_cache(key) 
    2067 
    2068   # duplicate columns & possible reduce dimensionality 

/Users/XXXi/anaconda/envs/py36/lib/python3.6/site-packages/pandas/core/generic.py in _get_item_cache(self, item) 
    1384   res = cache.get(item) 
    1385   if res is None: 
-> 1386    values = self._data.get(item) 
    1387    res = self._box_item_values(item, values) 
    1388    cache[item] = res 

/Users/XXXi/anaconda/envs/py36/lib/python3.6/site-packages/pandas/core/internals.py in get(self, item, fastpath) 
    3541 
    3542    if not isnull(item): 
-> 3543     loc = self.items.get_loc(item) 
    3544    else: 
    3545     indexer = np.arange(len(self.items))[isnull(self.items)] 

/Users/XXXi/anaconda/envs/py36/lib/python3.6/site-packages/pandas/indexes/base.py in get_loc(self, key, method, tolerance) 
    2134     return self._engine.get_loc(key) 
    2135    except KeyError: 
-> 2136     return self._engine.get_loc(self._maybe_cast_indexer(key)) 
    2137 
    2138   indexer = self.get_indexer([key], method=method, tolerance=tolerance) 

pandas/index.pyx in pandas.index.IndexEngine.get_loc (pandas/index.c:4433)() 

pandas/index.pyx in pandas.index.IndexEngine.get_loc (pandas/index.c:4279)() 

pandas/src/hashtable_class_helper.pxi in pandas.hashtable.PyObjectHashTable.get_item (pandas/hashtable.c:13742)() 

pandas/src/hashtable_class_helper.pxi in pandas.hashtable.PyObjectHashTable.get_item (pandas/hashtable.c:13696)() 

KeyError: 'Age' 

我用sep=','所以我真的不明白爲什麼這個代碼不能在每個逗號分開。如何解決這個問題?

我跟着一個答案,但錯誤發生(我不知道爲什麼) error

我的數據是data

回答

1

注意!

主要問題是下載數據。如果您遇到加載和處理Kaggle Titanic數據集的問題,您可以重新從here下載CSV並重新運行您的程序。


你可以通過delimiter=','

df = pd.read_csv("Desktop/data/train.csv", delimiter=',') 
print(df.head()) 

    PassengerId Survived Pclass \ 
0   1   0  3 
1   2   1  1 
2   3   1  3 
3   4   1  1 
4   5   0  3 

               Name  Sex Age SibSp \ 
0       Braund, Mr. Owen Harris male 22.0  1 
1 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38.0  1 
2        Heikkinen, Miss. Laina female 26.0  0 
3  Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35.0  1 
4       Allen, Mr. William Henry male 35.0  0 

    Parch   Ticket  Fare Cabin Embarked 
0  0   A/5 21171 7.2500 NaN  S 
1  0   PC 17599 71.2833 C85  C 
2  0 STON/O2. 3101282 7.9250 NaN  S 
3  0   113803 53.1000 C123  S 
4  0   373450 8.0500 NaN  S 


print(df.columns) 

Index(['PassengerId', 'Survived', 'Pclass', 'Name', 'Sex', 'Age', 'SibSp', 
     'Parch', 'Ticket', 'Fare', 'Cabin', 'Embarked'], 
     dtype='object') 

接下來,您可以創建各種各樣的映射:

mapping = {'male' : 0, 'female' : 1} 

而且你會打電話給pd.Series.replace

df.Sex = df.Sex.replace(mapping) 
print(df.Sex) 

0 0 
1 1 
2 1 
3 1 
4 0 
Name: Sex, dtype: int64 
+0

根據熊貓文檔'delimiter'只是sep的替代名稱:https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html – StefanK

+0

@StefanK從我的經驗,那裏一直以來,我通過使用它們的組合,或者將其中一個變爲另一個,從而得到了一些東西。我認爲他們是互補的補充,而不是替代品。編輯:稍微改變了我的答案。 –

+0

@cᴏʟᴅsᴘᴇᴇᴅThx爲你的答案。我跟隨你的消息,但AttributeError發生。我更新了我的問題,如果你知道什麼,請幫助我。 – user8385498

1

你read_csv看起來不錯,在同一直線上替換似乎導致麻煩。

嘗試先將csv讀入變量df中。這樣你的代碼就會更乾淨。

df = pd.read_csv('Desktop/data/train.csv',sep=',') 
df['Sex'] = df['Sex'].map({'female': 1, 'male': 0}) 

但是你可以離開這個月的說法完全爲逗號是標準的分隔符

或者做清潔與更換上新的生產線,你文件讀入到DF和使用後 inplace=True

df['Sex'].replace({'male': 0, 'female': 1}, inplace=True) 

一般建議:

Kaggle我們bpage支持在內核部分進行腳本共享和註釋。 試着看一下就看你如何去分析,如果你卡住的地方:

https://www.kaggle.com/c/titanic/kernels

+0

THX ,你的評論。你的意思是, df = pd.read_csv(「Desktop/data/train.csv」,sep =',',inplace = True,regex = True)。替換(「男」,0)。替換(「女」,1),對嗎? – user8385498

+0

但是使用這段代碼,我得到了一個錯誤, TypeError Traceback(最近調用最後一個) in () ----> 1 df = pd.read_csv(「Desktop/(),'regex = true).replace(「male」,0).replace(「female」,1) TypeError:parser_f()得到了一個意外的關鍵字參數'inplace', 我誤解你的消息嗎? – user8385498

+0

我編輯了我的原始答案...在新行上執行清理 – StefanK