KnowledgeBoat Logo
|

Informatics Practices

Name the functions that give you the index of maximum and minimum values in a DataFrame.

Python Pandas

2 Likes

Answer

The idxmax() and idxmin() functions find out the index of maximum and minimum values respectively from a DataFrame.

Answered By

1 Like


Related Questions