polars::prelude

Trait RoundSeries

Source
pub trait RoundSeries: SeriesSealed {
    // Provided methods
    fn round(&self, decimals: u32) -> Result<Series, PolarsError> { ... }
    fn round_sig_figs(&self, digits: i32) -> Result<Series, PolarsError> { ... }
    fn floor(&self) -> Result<Series, PolarsError> { ... }
    fn ceil(&self) -> Result<Series, PolarsError> { ... }
}
Available on crate feature polars-ops only.

Provided Methods§

Source

fn round(&self, decimals: u32) -> Result<Series, PolarsError>

Round underlying floating point array to given decimal.

Source

fn round_sig_figs(&self, digits: i32) -> Result<Series, PolarsError>

Source

fn floor(&self) -> Result<Series, PolarsError>

Floor underlying floating point array to the lowest integers smaller or equal to the float value.

Source

fn ceil(&self) -> Result<Series, PolarsError>

Ceil underlying floating point array to the highest integers smaller or equal to the float value.

Implementors§