pd.Series([1, 2, 3])
0 1 # this is the Series data
1 2 #
2 3 #
dtype: int64 # this is just for display to indicate the Series type
为什么dtype是object
df = pd.DataFrame({'A': [1], 'B': [True], 'C': ['a']})
df.dtypes
A int64
B bool
C object
dtype: object # this just indicates that we have a Series of python objects
1条答案
按热度按时间xqk2d5yq1#
df.dtypes
返回一个Series
,每个列名作为索引,dtype作为值。当pandas显示Series时,也会显示其下面的Series的整体类型,这就是您在这里看到的(因为type
是objects
)。这是
df.dtypes.dtype
的值。示例:
为什么显示屏上多了一行
为什么dtype是
object