Зміст курсу
Перші Кроки в Pandas
Перші Кроки в Pandas
DataFrame
Series — це найпростіша структура даних в pandas. Тепер давайте розглянемо більш складну структуру даних: DataFrame. Це двовимірний об'єкт, який використовується набагато частіше.
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 show code editor
Create an animals
DataFrame using the animals_data
dictionary.
Дякуємо за ваш відгук!
DataFrame
Series — це найпростіша структура даних в pandas. Тепер давайте розглянемо більш складну структуру даних: DataFrame. Це двовимірний об'єкт, який використовується набагато частіше.
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 show code editor
Create an animals
DataFrame using the animals_data
dictionary.
Дякуємо за ваш відгук!