Module agnes::apply::stats[][src]

Statistical functions for agnes data structures.

Structs

MaxFn

Function (implementing Func) computing the maximum value among the values in a field.

MeanFn

Function (implementing Func) computing the mean of values in a field.

MinFn

Function (implementing Func) computing the minimum value among the values in a field.

NumExistsFn

Function (implementing Func) computing the number of non-NA (existing) values in a field.

NumNaFn

Function (implementing Func) computing the number of NA values in a field.

StdevFn

Function (implementing Func) computing the (sample) standard deviation of values in a field.

StdevPFn

Function (implementing Func) computing the population standard deviation of values in a field.

SumFn

Function (implementing Func) computing the sum of values in a field.

SumSqFn

Function (implementing Func) computing the sum of squares of values in a field.

VarFn

Function (implementing Func) computing the (sample) variance of values in a field.

VarPFn

Function (implementing Func) computing the population variance of values in a field.

Traits

CanMean

Marker trait for data types over which a mean can be performed.

CanMinMax

Marker trait for data types over which a minimum and maximum can be computed.

CanSum

Marker trait for data types over which a summation can be performed.

CanSumSq

Marker trait for data types over which a summation of squares of values can be performed.

Mean

Trait providing method for computing the mean of values in a field.

MinMax

Trait providing methods for computing the minimum and maximum among values in a field.

NaCount

Trait providing methods for returning the number of NA and non-NA values in a field.

Sum

Trait providing method for computing the summation of values in a field.

SumSq

Trait providing method for computing the summation of squares of values in a field.

Variance

Trait providing methods for computing the variance and standard deviation of values in a field.