Info Function:
- Before you start on any of the Pandas tools, you will want to examine the dataframe to get an overview of your dataset. As we can see in the output, the summary includes list of all columns with their data types and the number of non-null values in each column. We also have the value of range index provided for the index axis.
- In order to print the short summary, we can use the verbose parameter and set it to False. As, we can see in the output, the summary is very crisp and short. It is helpful when we have 1000's of attributes in dataframe.