Trait vortex_array::stats::StatisticsVTable
source · pub trait StatisticsVTable<Array: ?Sized> {
// Provided method
fn compute_statistics(
&self,
_array: &Array,
_stat: Stat,
) -> VortexResult<StatsSet> { ... }
}
Expand description
Encoding VTable for computing array statistics.
Provided Methods§
sourcefn compute_statistics(
&self,
_array: &Array,
_stat: Stat,
) -> VortexResult<StatsSet>
fn compute_statistics( &self, _array: &Array, _stat: Stat, ) -> VortexResult<StatsSet>
Compute the requested statistic. Can return additional stats.