pub fn _arg_bottom_k(
k: usize,
by_column: &[Column],
sort_options: &mut SortMultipleOptions,
) -> Result<NoNull<ChunkedArray<UInt32Type>>, PolarsError>
Expand description
Return the indices of the bottom k elements.
Similar to .argsort() then .slice(0, k) but with a more efficient implementation.