MCPcopy
hub / github.com/pandas-dev/pandas / sort_index

Method sort_index

pandas/core/frame.py:8406–8418  ·  view source on GitHub ↗
(
        self,
        *,
        axis: Axis = ...,
        level: IndexLabel = ...,
        ascending: bool | Sequence[bool] = ...,
        inplace: Literal[True],
        kind: SortKind = ...,
        na_position: NaPosition = ...,
        sort_remaining: bool = ...,
        ignore_index: bool = ...,
        key: IndexKeyFunc = ...,
    )

Source from the content-addressed store, hash-verified

8404
8405 @overload
8406 def sort_index(
8407 self,
8408 *,
8409 axis: Axis = ...,
8410 level: IndexLabel = ...,
8411 ascending: bool | Sequence[bool] = ...,
8412 inplace: Literal[True],
8413 kind: SortKind = ...,
8414 na_position: NaPosition = ...,
8415 sort_remaining: bool = ...,
8416 ignore_index: bool = ...,
8417 key: IndexKeyFunc = ...,
8418 ) -> None: ...
8419
8420 @overload
8421 def sort_index(

Calls

no outgoing calls