在pandas文档的概述页面中,Series 数据结构被描述为“同质类型”。
Data Structures
Dimensions Name Description
1 Series 1D labeled homogeneously-typed array
2 DataFrame General 2D labeled, size-mutable tabular structure with potentially heterogeneously-typed column
但是,可以创建具有多种数据类型的 Series 对象。
pd.Series(data=[1,2,3,4,5,'x'], index=['a','b','c','d','e','f'])
#=>a 1
# b 2
# c 3
# d 4
# e 5
# f x
# dtype: object
那么homogeneously-typed熊猫文档中提到的含义是什么?