print(df.describe().min())
will compute minimum values for the (pseudo-)dataframe that df.describe()
returns, which will likely not make much sense.
Instead, simply
>>> df.min()
A 1
B 2
C 3
will return column-wise minimums.
CLICK HERE to find out more related problems solutions.