Method
sort_values
(
self,
by: IndexLabel,
*,
axis: Axis = ...,
ascending=...,
inplace: Literal[False] = ...,
kind: SortKind = ...,
na_position: NaPosition = ...,
ignore_index: bool = ...,
key: ValueKeyFunc = ...,
)
Source from the content-addressed store, hash-verified
| 8101 | # error: Signature of "sort_values" incompatible with supertype "NDFrame" |
| 8102 | @overload # type: ignore[override] |
| 8103 | def sort_values( |
| 8104 | self, |
| 8105 | by: IndexLabel, |
| 8106 | *, |
| 8107 | axis: Axis = ..., |
| 8108 | ascending=..., |
| 8109 | inplace: Literal[False] = ..., |
| 8110 | kind: SortKind = ..., |
| 8111 | na_position: NaPosition = ..., |
| 8112 | ignore_index: bool = ..., |
| 8113 | key: ValueKeyFunc = ..., |
| 8114 | ) -> DataFrame: ... |
| 8115 | |
| 8116 | @overload |
| 8117 | def sort_values( |