pub trait SeriesMethods: SeriesSealed {
    fn value_counts(
        &self,
        multithreaded: bool,
        sorted: bool
    ) -> PolarsResult<DataFrame> { ... } fn is_sorted(&self, options: SortOptions) -> bool { ... } }

Provided Methods§

Create a DataFrame with the unique values of this Series and a column "counts" with dtype IdxType

Implementations on Foreign Types§

Implementors§