DataFrame.get_ftype_counts(self) [source]
返回此对象中唯一ftypes
的计数。
从0.23.0版开始不推荐使用。
这对于SparseDataFrame或包含稀疏数组的DataFrames很有用。
返回值: | dtype : 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)