Dan*_*ero 15 python dataframe pandas
我正在分析一个形状类似于以下示例的数据集.我有两种不同类型的数据(abc数据和xyz数据):
abc1 abc2 abc3 xyz1 xyz2 xyz3
0 1 2 2 2 1 2
1 2 1 1 2 1 1
2 2 2 1 2 2 2
3 1 2 1 1 1 1
4 1 1 2 1 2 1
Run Code Online (Sandbox Code Playgroud)
我想创建一个函数,为数据框中存在的每个abc列添加一个分类列.使用列名列表和类别映射字典,我能够得到我想要的结果.
abc_columns = ['abc1', 'abc2', 'abc3']
xyz_columns = ['xyz1', 'xyz2', 'xyz3']
abc_category_columns = ['abc1_category', 'abc2_category', 'abc3_category']
categories = {1: 'Good', 2: 'Bad', 3: 'Ugly'}
for i in range(len(abc_category_columns)):
df3[abc_category_columns[i]] = df3[abc_columns[i]].map(categories)
print df3
Run Code Online (Sandbox Code Playgroud)
最终结果:
abc1 abc2 abc3 xyz1 xyz2 xyz3 abc1_category abc2_category abc3_category
0 1 2 2 2 1 2 Good Bad Bad
1 2 1 1 2 1 1 Bad Good Good
2 2 2 1 2 2 2 Bad Bad Good
3 1 2 1 1 1 1 Good Bad Good
4 1 1 2 1 2 1 Good Good Bad
Run Code Online (Sandbox Code Playgroud)
虽然最后的for循环工作正常,我觉得我应该使用Python的lambda功能,但似乎无法搞清楚.
有没有更有效的方法来映射动态数量的abc类型列?
And*_*den 24
In [11]: df[abc_columns].applymap(categories.get)
Out[11]:
abc1 abc2 abc3
0 Good Bad Bad
1 Bad Good Good
2 Bad Bad Good
3 Good Bad Good
4 Good Good Bad
Run Code Online (Sandbox Code Playgroud)
并将其放到指定的列:
In [12]: abc_categories = map(lambda x: x + '_category', abc_columns)
In [13]: abc_categories
Out[13]: ['abc1_category', 'abc2_category', 'abc3_category']
In [14]: df[abc_categories] = df[abc_columns].applymap(categories.get)
Run Code Online (Sandbox Code Playgroud)
注意:您可以abc_columns使用列表解析相对有效地构建:
abc_columns = [col for col in df.columns if str(col).startswith('abc')]
Run Code Online (Sandbox Code Playgroud)