Conteúdo do Curso
Advanced Techniques in pandas
Advanced Techniques in pandas
Finding the Largest Values of a Column
In the last chapter, you learned how to output the smallest values; you can definitely do the same with the largest ones. To do so, you will use a very similar method with the same argument as the previous one: .nlargest()
. Look at the example of how to output the 10 newest cars, also sorted by 'Engine_volume'
- all duplicates included:
Obrigado pelo seu feedback!