pandas.Series.T#

property Series.T[源代码]#

返回转置,根据定义这是自身。

参见

索引

用于索引和对齐的不可变序列。

例子

对于系列:

>>> s = pd.Series(['Ant', 'Bear', 'Cow'])
>>> s
0     Ant
1    Bear
2     Cow
dtype: object
>>> s.T
0     Ant
1    Bear
2     Cow
dtype: object

对于索引:

>>> idx = pd.Index([1, 2, 3])
>>> idx.T
Index([1, 2, 3], dtype='int64')