pub trait SeriesMethods: SeriesSealed {
    fn value_counts(
        &self,
        multithreaded: bool,
        sorted: bool
    ) -> Result<DataFrame, PolarsError> { ... } }

Provided Methods

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

Implementors