regr_slope
aggregate function
Applies to: Databricks SQL Databricks Runtime
Returns the slope of the linear regression line in a group where xExpr
and yExpr
are NOT NULL
.
Syntax
regr_slope( [ALL | DISTINCT] yExpr, xExpr) [FILTER ( WHERE cond ) ]
This function can also be invoked as a window function using the OVER
clause.
Arguments
yExpr
: A numeric expression, the dependent variable.xExpr
: A numeric expression, the independent variable.cond
: An optional Boolean expression filtering the rows used for the function.