Maybe I have a dataframe as shown below:
Idx ABC 0 1 2 3 1 3 4 5 2 2 3 8
The maximum value of column B of the data data is 4, and I could get the index from df["B"].argmax() , which is 1.
Now the problem is, how do I get the exact maximum value of the dataframe B column?
Thanks!
source share