import pandas as pd
# View the top rows to the dataset
df.head()
# View the last rows to the dataset
df.tail()
# View the number and label of columns, as well the non-null count and data type
df.info()
# View descriptive statistics about the data
df.describe()
# View the counts of each element in a column
df['column_name'].value_counts()