使用字典过滤,拆分和命名单独的数据帧

时间:2017-12-14 01:49:34

标签: python loops dictionary dataframe

我有这样的字典: dict_eg = {'long name1':'short name1','long name2':'short name2',...}

我有一个数据框,我想根据长名称进行过滤,并根据短名称​​命名数据框。然后,这将遍历每个长名称选项,从而创建单独的数据帧。

我有过滤器部分正常工作,但我如何命名从每个不同的长名称创建的数据帧。

for long, short in dict_eg.items():
    **help_me_here_plz** = df_all[df_all['Column'] == column]

0 个答案:

没有答案