本文整理匯總了Python中pandas.core.sorting.nargsort方法的典型用法代碼示例。如果您正苦於以下問題:Python sorting.nargsort方法的具體用法?Python sorting.nargsort怎麽用?Python sorting.nargsort使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pandas.core.sorting
的用法示例。
在下文中一共展示了sorting.nargsort方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _stable_series_sort
# 需要導入模塊: from pandas.core import sorting [as 別名]
# 或者: from pandas.core.sorting import nargsort [as 別名]
def _stable_series_sort(ser, ascending):
"""
Stable sort for pandas series
Temporary Solution until
https://github.com/pandas-dev/pandas/issues/28697
https://github.com/pandas-dev/pandas/pull/28698
are resolved
"""
from pandas.core.sorting import nargsort
values = ser._values
indexer = nargsort(
values, kind='mergesort', ascending=ascending, na_position='last')
return pd.Series(values[indexer], index=ser.index[indexer])
示例2: sort_index
# 需要導入模塊: from pandas.core import sorting [as 別名]
# 或者: from pandas.core.sorting import nargsort [as 別名]
def sort_index(self, axis=0, level=None, ascending=True, inplace=False,
kind='quicksort', na_position='last', sort_remaining=True):
# TODO: this can be combined with DataFrame.sort_index impl as
# almost identical
inplace = validate_bool_kwarg(inplace, 'inplace')
axis = self._get_axis_number(axis)
index = self.index
if level:
new_index, indexer = index.sortlevel(level, ascending=ascending,
sort_remaining=sort_remaining)
elif isinstance(index, MultiIndex):
from pandas.core.sorting import lexsort_indexer
labels = index._sort_levels_monotonic()
indexer = lexsort_indexer(labels._get_labels_for_sorting(),
orders=ascending,
na_position=na_position)
else:
from pandas.core.sorting import nargsort
# Check monotonic-ness before sort an index
# GH11080
if ((ascending and index.is_monotonic_increasing) or
(not ascending and index.is_monotonic_decreasing)):
if inplace:
return
else:
return self.copy()
indexer = nargsort(index, kind=kind, ascending=ascending,
na_position=na_position)
indexer = _ensure_platform_int(indexer)
new_index = index.take(indexer)
new_index = new_index._sort_levels_monotonic()
new_values = self._values.take(indexer)
result = self._constructor(new_values, index=new_index)
if inplace:
self._update_inplace(result)
else:
return result.__finalize__(self)