Python | Панды DataFrame.ftypes
Pandas DataFrame - это двумерная потенциально неоднородная табличная структура данных с изменяемым размером и помеченными осями (строки и столбцы). Арифметические операции выравниваются по меткам строк и столбцов. Его можно рассматривать как dict-подобный контейнер для объектов Series. Это основная структура данных Pandas.
Pandas DataFrame.ftypes attribute return the ftypes (indication of sparse/dense and dtype) in DataFrame. It returns a Series with the data type of each column.
Syntax: DataFrame.ftypes
Parameter : None
Returns : series
Example #1: Use DataFrame.ftypes attribute to check if the columns are sparse or dense in the given Dataframe.
# importing pandas as pdimport pandas as pd # Creating the DataFramedf = pd.DataFrame({"Weight":[45, 88, 56, 15, 71], "Name":["Sam", "Andrea", "Alex", "Robin", "Kia"], "Age":[14, 25, 55, 8, 21]}) # Create the indexindex_ = ["Row_1", "Row_2", "Row_3", "Row_4", "Row_5"] # Set the indexdf.index = index_ # Print the DataFrameprint(df) |
Выход :
Now we will use DataFrame.ftypes attribute to check the ftype of the columns in the given dataframe.
# check if the column are # dense or sparseresult = df.ftypes # Print the resultprint(result) |
Output :
As we can see in the output, the DataFrame.ftypes attribute has successfully returned a series containing the ftypes of each column in the given dataframe.
Example #2: Use DataFrame.ftypes attribute to check if the columns are sparse or dense in the given Dataframe.
# importing pandas as pdimport pandas as pd # Create an arrayarr = [100, 35, 125, 85, 35] # Creating a sparse DataFramedf = pd.SparseDataFrame(arr) # Print the DataFrameprint(df) |
Выход :

Now we will use DataFrame.ftypes attribute to check the ftype of the columns in the given dataframe.
# check if the column are # dense or sparseresult = df.ftypes # Print the resultprint(result) |
Output :
As we can see in the output, the DataFrame.ftypes attribute has successfully returned the ftype of the given dataframe.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.