Module datafusion::functions_aggregate::regr
source · Expand description
Defines physical expressions that can evaluated at runtime during query execution
Structs§
RegrAccumulator
is 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 AggregateUDF for [$UDAF]
- Compute a linear regression of type RegrType::AvgY
- AggregateFunction that returns a AggregateUDF for [$UDAF]
- Compute a linear regression of type RegrType::Count
- AggregateFunction that returns a AggregateUDF for [$UDAF]
- Compute a linear regression of type RegrType::Intercept
- AggregateFunction that returns a AggregateUDF for [$UDAF]
- Compute a linear regression of type RegrType::R2
- AggregateFunction that returns a AggregateUDF for [$UDAF]
- Compute a linear regression of type RegrType::Slope
- AggregateFunction that returns a AggregateUDF for [$UDAF]
- Compute a linear regression of type RegrType::SXX
- AggregateFunction that returns a AggregateUDF for [$UDAF]
- Compute a linear regression of type RegrType::SXY
- AggregateFunction that returns a AggregateUDF for [$UDAF]
- Compute a linear regression of type RegrType::SYY
- AggregateFunction that returns a AggregateUDF for [$UDAF]