Python 哈希表键错误

Python 哈希表键错误,python,pandas,kaggle,sklearn-pandas,Python,Pandas,Kaggle,Sklearn Pandas,我在Kaggle中找到了以下代码 import re from nltk.corpus import stopwords # Import the stop word list def description_to_words(review_text): # 2. Remove non-letters letters_only = re.sub("[^a-zA-Z]", " ", review_text) # 3. Convert to lower

我在Kaggle中找到了以下代码

import re

from nltk.corpus import stopwords # Import the stop word list

def description_to_words(review_text):

    # 2. Remove non-letters        
    letters_only = re.sub("[^a-zA-Z]", " ", review_text)
    # 3. Convert to lower case, split into individual words
    words = letters_only.lower().split()
    # 4. In Python, searching a set is much faster than searching
    #   a list, so convert the stop words to a set
    stops = set(stopwords.words("english"))
    # 5. Remove stop words
    meaningful_words = [w for w in words if not w in stops]
    # 6. Join the words back into one string separated by space, 
    # and return the result.
    return( " ".join( meaningful_words ))
上面的代码与下面的函数调用配合得很好

clean_review = description_to_words(df['MaterialDescription'][3] )
print(clean_review)
但是当我尝试上面同样的事情时,比如将DataFrame分配给另一个变量,如下所示

X = df['MaterialDescription']
clean_review = description_to_words(X[3] )
print(clean_review)
我得到以下错误,这是完全荒谬的。我确信我需要一些关于熊猫的澄清

---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
C:\Anaconda\envs\tensorflow\lib\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: 3

During handling of the above exception, another exception occurred:

KeyError                                  Traceback (most recent call last)
<ipython-input-15-5c63f93c009a> in <module>()
----> 1 clean_review = description_to_words(X[3] )
      2 print(clean_review)

C:\Anaconda\envs\tensorflow\lib\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):

C:\Anaconda\envs\tensorflow\lib\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

C:\Anaconda\envs\tensorflow\lib\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

C:\Anaconda\envs\tensorflow\lib\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)]

C:\Anaconda\envs\tensorflow\lib\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: 3
下面是上述两行代码的堆栈跟踪

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-18-f8b01af18e4b> in <module>()
----> 1 clean_review = description_to_words(X[:3] )
      2 print(clean_review)

<ipython-input-6-70647cd7caba> in description_to_words(review_text)
      6 
      7     # 2. Remove non-letters
----> 8     letters_only = re.sub("[^a-zA-Z]", " ", review_text)
      9     # 3. Convert to lower case, split into individual words
     10     words = letters_only.lower().split()

C:\Anaconda\envs\tensorflow\lib\re.py in sub(pattern, repl, string, count, flags)
    180     a callable, it's passed the match object and must return
    181     a replacement string to be used."""
--> 182     return _compile(pattern, flags).sub(repl, string, count)
    183 
    184 def subn(pattern, repl, string, count=0, flags=0):

TypeError: expected string or bytes-like object
---------------------------------------------------------------------------
TypeError回溯(最近一次调用上次)
在()
---->1清洁检查=描述到单词(X[:3])
2打印(清洁检查)
描述中的文字(查看文字)
6.
7     # 2. 删除非字母
---->8个字母_only=re.sub(“[^a-zA-Z]”,“,查看文本)
9     # 3. 转换为小写,拆分为单个单词
10个单词=仅字母。\u.lower().split()
C:\Anaconda\envs\tensorflow\lib\re.py in sub(模式、repl、字符串、计数、标志)
180一个可调用的,它传递了match对象并且必须返回
181要使用的替换字符串。”“”
-->182返回编译(模式、标志).sub(repl、字符串、计数)
183
184 def子网(模式、应答、字符串、计数=0、标志=0):
TypeError:应为字符串或类似字节的对象
如果有人帮助我理解这里到底发生了什么,那将是一个很大的帮助

X = df['MaterialDescription']
clean_review = description_to_words(X[3] )
用python
从描述到单词(df['MaterialDescription'][3])

您必须通过以下方式找到索引:

clean_review = description_to_words(df.iloc[3]['MaterialDescription'] )

我在我的一个代码中遇到了类似的错误。结果是,由于我删除了空行,我的数据帧中缺少了那个特定的索引。
如果是这种情况,您可以执行df.reset_index(inplace=True),错误应该得到解决。

您的函数
description_to_words
需要一个文本/字符串,但它看起来像是从索引3开始切片
X
X[:3]
返回某种容器(不是字符串),然后传递给您的函数。这可能是最后一次回溯的来源。此外,您确定没有编写
X=df[['MaterialDescription']]
?因为
X=df['MaterialDescription']
返回一个
序列
,当使用
3
进行索引时,这应该可以。第一个回溯来自您试图使用关键字
3
访问数据帧。请检查以确保
X
实际上是一个
序列
对象:
isinstance(X,pd.Series)
。我确信我没有写入X=df[['MaterialDescription']],但它现在对我有效X=df['MaterialDescription']
clean_review = description_to_words(df.iloc[3]['MaterialDescription'] )