作者:郭震 51. How to get the row number of the nth largest value in a column? Find the row position of the 5th largest value of column a in df. # input
df pd.DataFrame(np.random.randint(1, 30, 30).reshape(10,-1), columnslist(abc))
df# Solution 1# argsort…