Expand description
Defines physical expressions that can evaluated at runtime during query execution
Structs§
- Regr
- Regr
Accumulator RegrAccumulator
is used to compute linear regression aggregate functions by maintaining statistics needed to compute them in an online fashion.
Enums§
Functions§
- regr_
avgx - Compute a linear regression of type RegrType::AvgX
- regr_
avgx_ udaf - AggregateFunction that returns a
AggregateUDF
forregr_avgx
- regr_
avgy - Compute a linear regression of type RegrType::AvgY
- regr_
avgy_ udaf - AggregateFunction that returns a
AggregateUDF
forregr_avgy
- regr_
count - Compute a linear regression of type RegrType::Count
- regr_
count_ udaf - AggregateFunction that returns a
AggregateUDF
forregr_count
- regr_
intercept - Compute a linear regression of type RegrType::Intercept
- regr_
intercept_ udaf - AggregateFunction that returns a
AggregateUDF
forregr_intercept
- regr_r2
- Compute a linear regression of type RegrType::R2
- regr_
r2_ udaf - AggregateFunction that returns a
AggregateUDF
forregr_r2
- regr_
slope - Compute a linear regression of type RegrType::Slope
- regr_
slope_ udaf - AggregateFunction that returns a
AggregateUDF
forregr_slope
- regr_
sxx - Compute a linear regression of type RegrType::SXX
- regr_
sxx_ udaf - AggregateFunction that returns a
AggregateUDF
forregr_sxx
- regr_
sxy - Compute a linear regression of type RegrType::SXY
- regr_
sxy_ udaf - AggregateFunction that returns a
AggregateUDF
forregr_sxy
- regr_
syy - Compute a linear regression of type RegrType::SYY
- regr_
syy_ udaf - AggregateFunction that returns a
AggregateUDF
forregr_syy