I have the following data frame:
import pandas as pd
df = pd.DataFrame({
"ClusterID" : [1,2,2,1,3],
"Genes" : ['foo','qux','bar','cux','fii'],
})
Which looks like this:
ClusterID Genes
0 1 foo
1 2 qux
2 2 bar
3 1 cux
4 3 fii
What I want to do is to convert them into a dictionary of list:
{ '1': ['foo','cux'],
'2': ['qux','bar'],
'3': ['fii']}
How can I do that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…