简体   繁体   中英

How to split dataframe in pandas

I have dataframe below

A B C
0 a h
0 b i
0 c j
1 d k
1 e l
2 f m
2 g n

I would like to split dataframe by df.A

A B C
0 a h
0 b i 
0 c j

and

A B C
1 d k
1 e l

and

A B C
2 f m
2 g n

I tried groupby but It didnt work well. how can I split dataframe to multiple dataframe?

You can create dictionary of DataFrames by dict comprehension :

dfs = {k:v for k, v in df.groupby('A')}
print (dfs)

{0:    A  B  C
0  0  a  h
1  0  b  i
2  0  c  j, 1:    A  B  C
3  1  d  k
4  1  e  l, 2:    A  B  C
5  2  f  m
6  2  g  n}

print (dfs[0])
   A  B  C
0  0  a  h
1  0  b  i
2  0  c  j

print (dfs[1])
   A  B  C
3  1  d  k
4  1  e  l

If necessary you can reset index:

dfs = {k:v.reset_index(drop=True) for k, v in df.groupby('A')}
print (dfs)
{0:    A  B  C
0  0  a  h
1  0  b  i
2  0  c  j, 1:    A  B  C
0  1  d  k
1  1  e  l, 2:    A  B  C
0  2  f  m
1  2  g  n}

print (dfs[1])
   A  B  C
0  1  d  k
1  1  e  l

print (dfs[2])
   A  B  C
0  2  f  m
1  2  g  n

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM