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

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

bigframes.pandas.Series.T#

property Series.T: Series#

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

Web Proxy Viewer  |  New URL  |  Original Page