Pull Data From Pandas DataFrames - Pandas For Machine Learning 4

Published: 19 September 2022
on channel: Codemy.com
8,372
292

In this video I'll show you how to pull data from a DataFrame in Pandas for Machine Learning.

We'll look at pulling rows with the head and tail function.

Then we'll look at getting information about the data with the Describe() Function.

We'll also look at pulling specific columns out using three different methods.

#pandas #codemy #JohnElder

Timecodes

0:00​​ - Introduction
1:23 - First Rows Head()
1:55 - Last Rows Tail()
2:25 - Get Information About DataFrame
3:26 - Get Shape of DataFrame
3:40 - Get Number of Dimensions of DataFrame
3:52 - Get Column DataTypes of DataFrame
4:23 - Get Basic Statistics From Columns
6:38 - Get Columns With Bracket Notation
7:24 - Get Columns With Dot Notation
7:33 - Get Columns With iLoc
8:15 - Conclusion