【发布时间】:2019-02-26 18:35:08
【问题描述】:
我正在尝试在 python pandas 中创建一个新列,但我不断收到一个(不稳定的)重复发生的 KeyError。该脚本的部分非常简单,因此我不确定是什么导致了错误,因为数据集中没有任何列具有相同的名称。
我的目标是创建一个新列并将其附加到包含该列 ticket_contents 内容的新翻译的数据框中。 这是数据样本;
25483 0 outstanding 0 Los-Angeles e-payment delayed Ticket 1/7/19 7:54
39363 0 outstanding 0 Los-Angeles e-payment delayed Ticket 1/7/19 7:54
83584 0 outstanding 6 Los-Angeles e-payment delayed Ticket 1/7/19 7:54
34537 0 outstanding 7 Los-Angeles e-payment lost Ticket 1/7/19 7:53
colnames = ['id', 'ln_id', 'status',
'number_outstanding', 'country', 'subject', 'ticket_contents', 'subtopic',
'date']
test_data = pandas.read_csv(test_data, names = colnames, encoding
= 'utf-8')
test_data = pandas.DataFrame(test_data)
translated_description = []
from_lang = 'tl'
to_lang = 'en-us'
def test_translation(contents):
translator = Translator(from_lang = from_lang, to_lang = to_lang)
translation = translator.translate(contents)
translated_description.append(translation)
#print(translated_description)
for contents, row in test_data.iterrows():
contents = test_data.ticket_contents.iloc[contents -1]
test_translation(contents)
test_data['translated_descriptions'].copy = translated_description
这是错误输出:
KeyError Traceback (most recent call last)
<ipython-input-70-55e39cf5e328> in <module>()
16 test_translation(contents)
17
---> 18 test_data['translated_descriptions'].copy = translated_description
19
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/core/frame.pyc in __getitem__(self, key)
1962 return self._getitem_multilevel(key)
1963 else:
-> 1964 return self._getitem_column(key)
1965
1966 def _getitem_column(self, key):
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/core/frame.pyc in _getitem_column(self, key)
1969 # get column
1970 if self.columns.is_unique:
-> 1971 return self._get_item_cache(key)
1972
1973 # duplicate columns & possible reduce dimensionality
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/core/generic.pyc in _get_item_cache(self, item)
1643 res = cache.get(item)
1644 if res is None:
-> 1645 values = self._data.get(item)
1646 res = self._box_item_values(item, values)
1647 cache[item] = res
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/core/internals.pyc in get(self, item, fastpath)
3588
3589 if not isnull(item):
-> 3590 loc = self.items.get_loc(item)
3591 else:
3592 indexer = np.arange(len(self.items))[isnull(self.items)]
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/core/indexes/base.pyc in get_loc(self, key, method, tolerance)
2442 return self._engine.get_loc(key)
2443 except KeyError:
-> 2444 return self._engine.get_loc(self._maybe_cast_indexer(key))
2445
2446 indexer = self.get_indexer([key], method=method, tolerance=tolerance)
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc (pandas/_libs/index.c:5280)()
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc (pandas/_libs/index.c:5126)()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item (pandas/_libs/hashtable.c:20523)()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item (pandas/_libs/hashtable.c:20477)()
KeyError: u'translated_descriptions'
【问题讨论】:
-
您应该提供来自
test_data的代码格式示例。 -
你不应该修改你正在迭代的东西 DataFrame.iterrows() documentation。请提供示例输入和输出,以便清楚您要实现的目标。