bigframes.geopandas.GeoSeries.transpose# GeoSeries.transpose() → 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.transpose() 0 Ant 1 Bear 2 Cow dtype: string Returns: Series. Return type: bigframes.pandas.Series