📜  pandas .nlargest - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:59.026000             🧑  作者: Mango

代码示例1
#The .nlargest(n, columns) returns in descending order the n largest 
#values in the specified column in the dataframe
df.nlargest(10, 'Volume')