Concise summary of Dataframe.
- So, next we are going to see about how to get the concise summary of DataFrame.
- So, there is a command called info that returns a concise summary of a DataFrame, the concise summary includes the data type of index; index being the row labels, the data type of row labels is what the output gives as well as it gives the data type of columns, it also gives the count of non-null values.
- Basically, how many filled values are there in your DataFrame.
- Also, it gives the memory usage of the DataFrame and the syntax would be you use the info command along with the DataFrame name.
Syntax = DataFrame.info()
0 Comments:
Post a Comment