Inspection
What are some common ways to inspect a DataFrame?
Answer
Use the following:
df.head() # first rows
df.tail() # last rows
df.describe() # statistics summary
df.columns # column labels
df.index # row labels
df.dtypes # data types of each column