Supposely I have dataframe as below:
Idx A B C
0 1 2 3
1 3 4 5
2 2 3 8
The max value of dataframe column B is 4, and I could get the index from df["B"].argmax() which is 1.
The problem is now, how could I get the exact max value of the dataframe column B?
Thanks!