pandas.DataFrame.get_ftype_counts 是一个用于获取 DataFrame 列中数据类型的计数的函数。它返回一个包含每个数据类型及其出现次数的 Series。该方法对于快速了解 DataFrame 中不同列的数据类型分布很有用。本文主要介绍一下Pandas中pandas.DataFrame.get_ftype_counts方法的使用。

DataFrame.get_ftype_counts(self)                                                  [source]

返回此对象中唯一ftypes的计数。

从0.23.0版开始不推荐使用。

这对于SparseDataFrame或包含稀疏数组的DataFrames很有用。

返回值

dtype : Series

Series使用每种类型和稀疏性(稠密/稀疏)的列数。

例子

import pandas as pd

# 创建一个 DataFrame
data = {
    'int_col': [1, 2, 3],
    'float_col': [1.1, 2.2, 3.3],
    'str_col': ['a', 'b', 'c'],
    'bool_col': [True, False, True]
}

df = pd.DataFrame(data)

# 获取数据类型计数
ftype_counts = df.get_ftype_counts()

print(ftype_counts)

推荐文档

相关文档

大家感兴趣的内容

随机列表