【发布时间】:2017-12-07 02:45:20
【问题描述】:
我有以下格式的 CSV 数据:
+-----------------+--------+-------------+
| reservation_num | rate | guest_name |
+-----------------+--------+-------------+
| B874576 | 169.95 | Bob Smith |
| H786234 | 258.95 | Jane Doe |
| H786234 | 258.95 | John Doe |
| F987354 | 385.95 | David Jones |
| N097897 | 449.95 | Mark Davis |
| H567349 | 482.95 | Larry Stein |
| N097897 | 449.95 | Sue Miller |
+-----------------+--------+-------------+
我想向 DataFrame 添加一个名为“rate_per_person”的功能(列)。它的计算方法是将特定预订号的费率除以具有与其住宿相关的相同预订号的客人总数。
这是我的代码:
#Importing Libraries
import pandas as pd
# Importing the Dataset
ds = pd.read_csv('hotels.csv')
for index, row in ds.iterrows():
row['rate_per_person'] = row['rate'] / ds[row['reservation_num']].count
还有错误信息:
Traceback (most recent call last):
File "<ipython-input-3-0668a3165e76>", line 2, in <module>
row['rate_per_person'] = row['rate'] / ds[row['reservation_num']].count
File "/Users/<user_name>/anaconda/lib/python3.6/site-packages/pandas/core/frame.py", line 2062, in __getitem__
return self._getitem_column(key)
File "/Users/<user_name>/anaconda/lib/python3.6/site-packages/pandas/core/frame.py", line 2069, in _getitem_column
return self._get_item_cache(key)
File "/Users/<user_name>/anaconda/lib/python3.6/site-packages/pandas/core/generic.py", line 1534, in _get_item_cache
values = self._data.get(item)
File "/Users/<user_name>/anaconda/lib/python3.6/site-packages/pandas/core/internals.py", line 3590, in get
loc = self.items.get_loc(item)
File "/Users/<user_name>/anaconda/lib/python3.6/site-packages/pandas/core/indexes/base.py", line 2395, in get_loc
return self._engine.get_loc(self._maybe_cast_indexer(key))
File "pandas/_libs/index.pyx", line 132, in pandas._libs.index.IndexEngine.get_loc (pandas/_libs/index.c:5239)
File "pandas/_libs/index.pyx", line 154, in pandas._libs.index.IndexEngine.get_loc (pandas/_libs/index.c:5085)
File "pandas/_libs/hashtable_class_helper.pxi", line 1207, in pandas._libs.hashtable.PyObjectHashTable.get_item (pandas/_libs/hashtable.c:20405)
File "pandas/_libs/hashtable_class_helper.pxi", line 1215, in pandas._libs.hashtable.PyObjectHashTable.get_item (pandas/_libs/hashtable.c:20359)
KeyError: 'B874576'
根据错误消息,很明显最后一行代码的ds[row['reservation_num']].count 部分存在问题。但是,我不确定以允许我以编程方式创建新功能的方式获取每次预订的客人数量的正确方法。
【问题讨论】:
标签: python python-3.x pandas machine-learning data-science