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

Method sort_values

pandas/core/series.py:3541–3551  ·  view source on GitHub ↗
(
        self,
        *,
        axis: Axis = ...,
        ascending: bool | Sequence[bool] = ...,
        inplace: Literal[False] = ...,
        kind: SortKind = ...,
        na_position: NaPosition = ...,
        ignore_index: bool = ...,
        key: ValueKeyFunc = ...,
    )

Source from the content-addressed store, hash-verified

3539
3540 @overload
3541 def sort_values(
3542 self,
3543 *,
3544 axis: Axis = ...,
3545 ascending: bool | Sequence[bool] = ...,
3546 inplace: Literal[False] = ...,
3547 kind: SortKind = ...,
3548 na_position: NaPosition = ...,
3549 ignore_index: bool = ...,
3550 key: ValueKeyFunc = ...,
3551 ) -> Series: ...
3552
3553 @overload
3554 def sort_values(

Calls 10

_constructorMethod · 0.95
validate_bool_kwargFunction · 0.90
validate_ascendingFunction · 0.90
ensure_key_mappedFunction · 0.90
nargsortFunction · 0.90
default_indexFunction · 0.90
_get_axis_numberMethod · 0.80
_update_inplaceMethod · 0.80
__finalize__Method · 0.80
copyMethod · 0.45