2

我的 pandas DataFrame 中有一个名为“State”的列。它包含美国各州的缩写。我有硬编码区域,我想为每个州创建一个包含区域的新列。

我使用了 pd.Series.apply(),但我想知道这种映射是否有更好的做法。关于如何改进我的代码的任何建议?

这是我当前有效的代码,但我只是对最佳实践的建议持开放态度。

def get_region(s, *regions):
    if s in regions[0]:
        return 'west'
    elif s in regions[1]:
        return 'midwest'
    elif s in regions[2]:
        return 'south'
    elif s in regions[3]:
        return 'northeast'
    else:
        return None

west = ['WA','OR','CA','ID','NV','MT','WY','UT','AZ','CO','NM']
midwest = ['ND','MN','WI','MI','SD','NE','KS','IA','MO','IL','IN','OH']
south = ['TX','OK','AR','LA','MS','TN','KY','AL','GA','FL','SC','NC','VA','WV','MD','DE']
northeast = ['PA','NJ','NY','CT','MA','RI','VT','NH','ME']

regions = [west,midwest,south,northeast]

full_df['Region'] = full_df['State'].apply(get_region, args=regions)
full_df['Region'].head(15)

Out:
0          west
1       midwest
2         south
3         south
4       midwest
5          west
6         south
7         south
8          west
9       midwest
10        south
11    northeast
12    northeast
13         west
14         west
Name: Region, dtype: object
4

2 回答 2

3

检查与map

s=pd.DataFrame([west,midwest,south,northeast],index=['west','midwest','south','northeast'])
s=s.reset_index().melt('index')
full_df['Region'] = full_df['State'].map(dict(zip(s['value'],s['index'])))
于 2019-04-04T16:55:33.957 回答
2

您可以尝试创建一个 dict 并将其映射到该列:

west_dict = {i:"west" for i in west}
midwest_dict = {i:"midwest" for i in midwest}
south_dict = {i:"south" for i in south}
northeast_dict = {i:"northeast" for i in northeast}
d = {**west_dict, **midwest_dict, **south_dict, **northeast_dict}
full_df['Region'] = full_df['State'].map(d)
于 2019-04-04T16:47:18.383 回答