bigframes.pandas.MultiIndex.T#

propertyMultiIndex.T:Index#

Return the transpose, which is by definition self.

Examples:

>>>s=bpd.Series(['Ant','Bear','Cow'])>>>s0     Ant1    Bear2     Cowdtype: string
>>>s.T0     Ant1    Bear2     Cowdtype: string

For Index:

>>>idx=bpd.Index([1,2,3])>>>idx.TIndex([1, 2, 3], dtype='Int64')
Returns:

Index

Return type:

bigframes.pandas.Index

On this page

This Page