To see the summary statistics for a Pandas dataframe, do this:
df.describe()
This will show things like: count, mean, standard deviation, etc.
To see column details (data types), do this:
df.info()
df.describe()
This will show things like: count, mean, standard deviation, etc.
To see column details (data types), do this:
df.info()
No comments:
Post a Comment