Trait polars_core::chunked_array::ops::RepeatBy
source · pub trait RepeatBy {
// Provided method
fn repeat_by(&self, _by: &IdxCa) -> PolarsResult<ListChunked> { ... }
}
Available on crate feature
repeat_by
only.Expand description
Repeat the values n
times.
Provided Methods§
sourcefn repeat_by(&self, _by: &IdxCa) -> PolarsResult<ListChunked>
fn repeat_by(&self, _by: &IdxCa) -> PolarsResult<ListChunked>
Repeat the values n
times, where n
is determined by the values in by
.