Contenido del Curso
Primeros Pasos con Pandas
Primeros Pasos con Pandas
DataFrame
Series es la estructura de datos más simple en pandas. Ahora vamos a profundizar en una estructura de datos más compleja: DataFrame. Se trata de un objeto bidimensional de uso más común.
To create a DataFrame
object, you'll need to use a dictionary
in conjunction with the .DataFrame()
constructor.
import pandas as pd dataset = {'name' : ['Ann', 'Alex', 'Kevin', 'Kate'], 'age' : [35, 12, 24, 45]} data_frame = pd.DataFrame(dataset) print(data_frame)
Note
If you want to explicitly indicate that the variable represents a DataFrame, you can include
df
in the variable name, as shown in this example (people_df
).
Swipe to begin your solution
Create an animals
DataFrame using the animals_data
dictionary.
Solución
¡Gracias por tus comentarios!
DataFrame
Series es la estructura de datos más simple en pandas. Ahora vamos a profundizar en una estructura de datos más compleja: DataFrame. Se trata de un objeto bidimensional de uso más común.
To create a DataFrame
object, you'll need to use a dictionary
in conjunction with the .DataFrame()
constructor.
import pandas as pd dataset = {'name' : ['Ann', 'Alex', 'Kevin', 'Kate'], 'age' : [35, 12, 24, 45]} data_frame = pd.DataFrame(dataset) print(data_frame)
Note
If you want to explicitly indicate that the variable represents a DataFrame, you can include
df
in the variable name, as shown in this example (people_df
).
Swipe to begin your solution
Create an animals
DataFrame using the animals_data
dictionary.
Solución
¡Gracias por tus comentarios!