databricks.koalas.Series.swapaxes

Series.swapaxes(i: Union[str, int], j: Union[str, int], copy: bool = True) → databricks.koalas.series.Series[source]

Interchange axes and swap values axes appropriately.

Parameters
i: {0 or ‘index’, 1 or ‘columns’}. The axis to swap.
j: {0 or ‘index’, 1 or ‘columns’}. The axis to swap.
copybool, default True.
Returns
Series

Examples

>>> kser = ks.Series([1, 2, 3], index=["x", "y", "z"])
>>> kser
x    1
y    2
z    3
dtype: int64
>>>
>>> kser.swapaxes(0, 0)
x    1
y    2
z    3
dtype: int64