max in pandas code example
Example 1: get max value column pandas
max_value_column = df["column_name"].max()
Example 2: find min and max from dataframe column
max_value = column.max()
Example 3: find max in a dataframe
max_value = df.to_numpy().max()