Module datafusion_functions_aggregate::regr
source · Expand description
Defines physical expressions that can evaluated at runtime during query execution
Structs§
RegrAccumulatoris used to compute linear regression aggregate functions by maintaining statistics needed to compute them in an online fashion.
Enums§
Functions§
- Compute a linear regression of type RegrType::AvgX
- AggregateFunction that returns a
AggregateUDFforregr_avgx - Compute a linear regression of type RegrType::AvgY
- AggregateFunction that returns a
AggregateUDFforregr_avgy - Compute a linear regression of type RegrType::Count
- AggregateFunction that returns a
AggregateUDFforregr_count - Compute a linear regression of type RegrType::Intercept
- AggregateFunction that returns a
AggregateUDFforregr_intercept - Compute a linear regression of type RegrType::R2
- AggregateFunction that returns a
AggregateUDFforregr_r2 - Compute a linear regression of type RegrType::Slope
- AggregateFunction that returns a
AggregateUDFforregr_slope - Compute a linear regression of type RegrType::SXX
- AggregateFunction that returns a
AggregateUDFforregr_sxx - Compute a linear regression of type RegrType::SXY
- AggregateFunction that returns a
AggregateUDFforregr_sxy - Compute a linear regression of type RegrType::SYY
- AggregateFunction that returns a
AggregateUDFforregr_syy