import pandas as pd
# making data frame from csv file
df = pd.read_excel("nba.xlsx")
# printing the first 10 rows of the dataframe
df[:10]
# Applying aggregation across all the columns
# sum and min will be found for each
# numeric type column in df dataframe
df.aggregate(['sum', 'min'])