Python:如何根据列的值拆分数据框,并根据列值命名每个新的df

时间:2018-06-12 02:20:32

标签: python python-3.x pandas dataframe split

我有一个df

    Code    Country
0   BCA      C
1   NGDP_R   C
2   PPPPC    C
3   BCA      I
4   NGDP_R   I
5   PPPPC    I
6   BCA      P
7   NGDP_R   P
8   PPPPC    P

我想根据列代码中的值将此数据帧拆分为多个数据帧。

我想输出

df_BCA = 
Code    Country
BCA      C
BCA      I
BCA      P

df_NGDP_R = 
Code    Country
NGDP_R  C
NGDP_R  I
NGDP_R  P

df_ PPPPC = 
Code    Country
PPPPC   C
PPPPC   I
PPPPC   P

0 个答案:

没有答案