[ Web Proxy ]
URL:
Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.pandas.Index.T.html [Back]  [Original]

bigframes.pandas.Index.T — bigframes documentation
Back to top
Search the docs ...:

bigframes.pandas.Index.T#

property Index.T: Index#

Return the transpose, which is by definition self.

Examples:

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

For Index:

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

Index

Return type:

bigframes.pandas.Index


Web Proxy Viewer  |  New URL  |  Original Page