Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
sortBy :: SortOrder -> [Text] -> DataFrame -> DataFramedataframe DataFrame O(k log n) Sorts the dataframe by a given row.
sortBy "Age" df
sortedIndexes :: Bool -> Column -> Vector Intdataframe DataFrame An internal function that returns a vector of how indexes change after a column is sorted.
sortedIndexes' :: Bool -> Vector Row -> Vector Intdataframe DataFrame No documentation available.
sortWith :: Sorting b => (a -> b) -> [a] -> [a]discrimination Data.Discrimination O(n). Sort a list with a Schwartzian transformation by using discrimination. This linear time replacement for sortWith and sortOn uses discrimination.
sorting :: Sorting a => Sort adiscrimination Data.Discrimination For every strictly monotone-increasing function f:
contramap f sorting ≡ sorting
sorting1 :: Sorting1 f => Sort a -> Sort (f a)discrimination Data.Discrimination No documentation available.
sortingBag :: Foldable f => Sort k -> Sort (f k)discrimination Data.Discrimination Construct a stable ordered discriminator that sorts a list as multisets of elements from another stable ordered discriminator. The resulting discriminator only cares about the set of keys and their multiplicity, and is sorted as if we'd sorted each key in turn before comparing.
sortingCompare :: Sorting a => a -> a -> Orderingdiscrimination Data.Discrimination sortingSet :: Foldable f => Sort k -> Sort (f k)discrimination Data.Discrimination Construct a stable ordered discriminator that sorts a list as sets of elements from another stable ordered discriminator. The resulting discriminator only cares about the set of keys, and is sorted as if we'd sorted each key in turn before comparing.
sortWith :: Sorting b => (a -> b) -> [a] -> [a]discrimination Data.Discrimination.Sorting O(n). Sort a list with a Schwartzian transformation by using discrimination. This linear time replacement for sortWith and sortOn uses discrimination.