Course Content
Pandas First Steps
Pandas First Steps
DataFrame
Series is the simplest data structure in pandas. Now let's delve into a more complex data structure: DataFrame. This is a two-dimensional object that is more commonly used.
Think of a DataFrame as akin to a spreadsheet, capable of containing large volumes of data. Like a spreadsheet, a DataFrame comes with an index and columns.
To create a DataFrame object, you'll need to use a dictionary
in conjunction with the .DataFrame()
function. Let's examine how the coding is executed.
import pandas as pd dataset = {'name' : ['Ann', 'Alex', 'Kevin', 'Kate'], 'age' : [35, 12, 24, 45]} data_frame = pd.DataFrame(dataset) print(data_frame)
Task
Let's craft an animal
DataFrame using the dataset
data and the pd.DataFrame()
function. Give it a try!
Thanks for your feedback!
DataFrame
Series is the simplest data structure in pandas. Now let's delve into a more complex data structure: DataFrame. This is a two-dimensional object that is more commonly used.
Think of a DataFrame as akin to a spreadsheet, capable of containing large volumes of data. Like a spreadsheet, a DataFrame comes with an index and columns.
To create a DataFrame object, you'll need to use a dictionary
in conjunction with the .DataFrame()
function. Let's examine how the coding is executed.
import pandas as pd dataset = {'name' : ['Ann', 'Alex', 'Kevin', 'Kate'], 'age' : [35, 12, 24, 45]} data_frame = pd.DataFrame(dataset) print(data_frame)
Task
Let's craft an animal
DataFrame using the dataset
data and the pd.DataFrame()
function. Give it a try!
Thanks for your feedback!
DataFrame
Series is the simplest data structure in pandas. Now let's delve into a more complex data structure: DataFrame. This is a two-dimensional object that is more commonly used.
Think of a DataFrame as akin to a spreadsheet, capable of containing large volumes of data. Like a spreadsheet, a DataFrame comes with an index and columns.
To create a DataFrame object, you'll need to use a dictionary
in conjunction with the .DataFrame()
function. Let's examine how the coding is executed.
import pandas as pd dataset = {'name' : ['Ann', 'Alex', 'Kevin', 'Kate'], 'age' : [35, 12, 24, 45]} data_frame = pd.DataFrame(dataset) print(data_frame)
Task
Let's craft an animal
DataFrame using the dataset
data and the pd.DataFrame()
function. Give it a try!
Thanks for your feedback!
Series is the simplest data structure in pandas. Now let's delve into a more complex data structure: DataFrame. This is a two-dimensional object that is more commonly used.
Think of a DataFrame as akin to a spreadsheet, capable of containing large volumes of data. Like a spreadsheet, a DataFrame comes with an index and columns.
To create a DataFrame object, you'll need to use a dictionary
in conjunction with the .DataFrame()
function. Let's examine how the coding is executed.
import pandas as pd dataset = {'name' : ['Ann', 'Alex', 'Kevin', 'Kate'], 'age' : [35, 12, 24, 45]} data_frame = pd.DataFrame(dataset) print(data_frame)
Task
Let's craft an animal
DataFrame using the dataset
data and the pd.DataFrame()
function. Give it a try!