pub struct GroupedTidyView {
pub view: TidyView,
pub index: GroupIndex,
}Expand description
A TidyView with an associated group index.
Fields§
§view: TidyView§index: GroupIndexImplementations§
Source§impl GroupedTidyView
impl GroupedTidyView
Sourcepub fn summarise(
&self,
assignments: &[(&str, TidyAgg)],
) -> Result<DataFrame, TidyError>
pub fn summarise( &self, assignments: &[(&str, TidyAgg)], ) -> Result<DataFrame, TidyError>
Compute aggregate statistics per group.
Sourcepub fn group_index(&self) -> &GroupIndex
pub fn group_index(&self) -> &GroupIndex
Get the group index (for auditing).
Trait Implementations§
Source§impl Clone for GroupedTidyView
impl Clone for GroupedTidyView
Source§fn clone(&self) -> GroupedTidyView
fn clone(&self) -> GroupedTidyView
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GroupedTidyView
impl RefUnwindSafe for GroupedTidyView
impl !Send for GroupedTidyView
impl !Sync for GroupedTidyView
impl Unpin for GroupedTidyView
impl UnsafeUnpin for GroupedTidyView
impl UnwindSafe for GroupedTidyView
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