Move from Excel to Python with Pandas Transcripts
Chapter: Intro to Pandas
Lecture: Concept: Understanding your dataframe

Login or purchase this course to watch this video and the rest of the course contents.
0:00 After creating your data frame in pandas, you want to use several commands to understand how it's structured.
0:06 If we have a data frame called DF and want to see the top of bottom rows, df.head() and df.tail() will show the bottom and top rows.
0:12 The info function will give more details on the columns, including memory usage and data types.
0:18 Understanding the number of rows and columns is important as well, so the DF shape function will tell us that,
0:23 and finally, calling describe on a data frame will give us a numerical summary of the values in that data frame.


Talk Python's Mastodon Michael Kennedy's Mastodon