Find the column names which have top 3 largest values for each row
What you need is pandas.DataFrame.nlargest.
import pandas as pd
import numpy as np
df={'a1':[5,6,3,2,5],'a2':[23,43,56,2,6], 'a3':[4,2,3,6,7], 'a4':[1,2,1,3,2],'a5':[4,98,23,5,7],'a6':[5,43,3,2,5]}
x=pd.DataFrame(df).T
rslt = pd.DataFrame(np.zeros((0,3)), columns=['top1','top2','top3'])
for i in x.columns:
df1row = pd.DataFrame(x.nlargest(3, i).index.tolist(), index=['top1','top2','top3']).T
rslt = pd.concat([rslt, df1row], axis=0)
print rslt
Out[52]:
top1 top2 top3
0 a2 a1 a6
0 a5 a2 a6
0 a2 a5 a1
0 a3 a5 a4
0 a3 a5 a2
You can do it like this:
x.T.apply(lambda x: x.sort_values(ascending=False).index).T.filter(['a1','a2','a3']).rename(columns={"a1":'top1',"a2":'top2',"a3":'top3'})
Results:
top1 top2 top3
0 a2 a6 a1
1 a5 a6 a2
2 a2 a5 a6
3 a3 a5 a4
4 a5 a3 a2
import pandas as pd
import numpy as np
df={'a1':[5,6,3,2,5],'a2':[23,43,56,2,6], 'a3':[4,2,3,6,7], 'a4':[1,2,1,3,2],'a5':[4,98,23,5,7],'a6':[5,43,3,2,5]}
df=pd.DataFrame(df)
df
a1 a2 a3 a4 a5 a6
0 5 23 4 1 4 5
1 6 43 2 2 98 43
2 3 56 3 1 23 3
3 2 2 6 3 5 2
4 5 6 7 2 7 5
We can solve it using the argsort
from numpy
and apply
, lambda
from pandas
.
The solution:
Tops =pd.DataFrame(df.apply(lambda x:list(df.columns[np.array(x).argsort()[::-1][:3]]), axis=1).to_list(), columns=['Top1', 'Top2', 'Top3'])
Tops
And we get:
Top1 Top2 Top3
0 a2 a6 a1
1 a5 a6 a2
2 a2 a5 a6
3 a3 a5 a4
4 a5 a3 a2