Site Navigation
Return the transpose, which is by definition self.
Examples
For Series:
>>>s=pd.Series(['Ant','Bear','Cow'])>>>s0 Ant1 Bear2 Cowdtype: object>>>s.T0 Ant1 Bear2 Cowdtype: object
For Index:
>>>idx=pd.Index([1,2,3])>>>idx.TIndex([1, 2, 3], dtype='int64')
Index.T