pub enum Stat {
Identity,
Bin {
bins: usize,
},
BoxPlot,
Smooth {
bandwidth: f64,
},
Aggregate {
func: AggregateFunc,
},
}Expand description
A statistical transform.
Variants§
Identity
Identity (no transform).
Bin
Bin data into histogram buckets.
BoxPlot
Box plot statistics (quartiles, whiskers).
Smooth
LOESS/local regression smoothing.
Aggregate
Aggregate (mean, sum, count, etc.).
Fields
§
func: AggregateFuncAggregation function.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stat
impl RefUnwindSafe for Stat
impl Send for Stat
impl Sync for Stat
impl Unpin for Stat
impl UnsafeUnpin for Stat
impl UnwindSafe for Stat
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