Trait polars::prelude::SeriesMethods  
source · pub trait SeriesMethods: SeriesSealed {
    // Provided methods
    fn value_counts(
        &self,
        sort: bool,
        parallel: bool,
        name: String
    ) -> Result<DataFrame, PolarsError> { ... }
    fn ensure_sorted_arg(&self, operation: &str) -> Result<(), PolarsError> { ... }
    fn is_sorted(&self, options: SortOptions) -> Result<bool, PolarsError> { ... }
}Available on crate feature 
polars-ops only.Provided Methods§
sourcefn value_counts(
    &self,
    sort: bool,
    parallel: bool,
    name: String
) -> Result<DataFrame, PolarsError>
 
fn value_counts( &self, sort: bool, parallel: bool, name: String ) -> Result<DataFrame, PolarsError>
fn ensure_sorted_arg(&self, operation: &str) -> Result<(), PolarsError>
sourcefn is_sorted(&self, options: SortOptions) -> Result<bool, PolarsError>
 
fn is_sorted(&self, options: SortOptions) -> Result<bool, PolarsError>
Checks if a Series is sorted. Tries to fail fast.