pandas.Index.T — pandas 3.0.0.dev0+2102.g839747c3f6 documentation (original) (raw)

property Index.T[source]#

Return the transpose, which is by definition self.

See also

Index

Immutable sequence used for indexing and alignment.

Examples

For Series:

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

For Index:

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