pub struct SeriesGroupByExpanding<'grouped, 'data> { /* private fields */ }Expand description
Grouped expanding window over a SeriesGroupBy.
Created by SeriesGroupBy::expanding(). Applies existing Series expanding
operations within each group independently, then maps the results back to
the original flat Series index.
Implementations§
Source§impl SeriesGroupByExpanding<'_, '_>
impl SeriesGroupByExpanding<'_, '_>
Sourcepub fn sum(&self) -> Result<Series, FrameError>
pub fn sum(&self) -> Result<Series, FrameError>
Grouped expanding sum.
Sourcepub fn mean(&self) -> Result<Series, FrameError>
pub fn mean(&self) -> Result<Series, FrameError>
Grouped expanding mean.
Sourcepub fn min(&self) -> Result<Series, FrameError>
pub fn min(&self) -> Result<Series, FrameError>
Grouped expanding minimum.
Sourcepub fn max(&self) -> Result<Series, FrameError>
pub fn max(&self) -> Result<Series, FrameError>
Grouped expanding maximum.
Sourcepub fn std(&self) -> Result<Series, FrameError>
pub fn std(&self) -> Result<Series, FrameError>
Grouped expanding sample standard deviation.
Sourcepub fn count(&self) -> Result<Series, FrameError>
pub fn count(&self) -> Result<Series, FrameError>
Grouped expanding count of non-null values.
Sourcepub fn var(&self) -> Result<Series, FrameError>
pub fn var(&self) -> Result<Series, FrameError>
Grouped expanding sample variance.
Auto Trait Implementations§
impl<'grouped, 'data> Freeze for SeriesGroupByExpanding<'grouped, 'data>
impl<'grouped, 'data> RefUnwindSafe for SeriesGroupByExpanding<'grouped, 'data>
impl<'grouped, 'data> Send for SeriesGroupByExpanding<'grouped, 'data>
impl<'grouped, 'data> Sync for SeriesGroupByExpanding<'grouped, 'data>
impl<'grouped, 'data> Unpin for SeriesGroupByExpanding<'grouped, 'data>
impl<'grouped, 'data> UnsafeUnpin for SeriesGroupByExpanding<'grouped, 'data>
impl<'grouped, 'data> UnwindSafe for SeriesGroupByExpanding<'grouped, 'data>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more