maximum value in a column pandas code example
Example 1: display maximum columns pandas
import pandas as pd
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
Example 2: get max value column pandas
max_value_column = df["column_name"].max()
Example 3: get maximum calue df column
max_value = column.max()