नोट
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप साइन इन करने या निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
Applies to:
Databricks SQL
Databricks Runtime 11.3 LTS and above
Returns the sum of squares of the yExpr values of a group where xExpr and yExpr are NOT NULL.
Syntax
regr_syy( [ALL | DISTINCT] yExpr, xExpr) [FILTER ( WHERE cond ) ]
This function can also be invoked as a window function using the OVER clause.
Arguments
yExpr: An numeric expression, the dependent variable.xExpr: An numeric expression, the independent variable.cond: An optional Boolean expression filtering the rows used for the function.
Returns
The result type is DOUBLE.
Any nulls within the group are ignored. If a group is empty or consists only of nulls, the result is NULL.
If DISTINCT is specified, the result is computed after duplicates are removed.
regr_syy(y, x) is a synonym for regr_count(y, x) * var_pop(y).
Examples
> SELECT regr_syy(y, x) FROM VALUES (1, 2), (2, 3), (2, 3), (null, 4), (4, null) AS T(y, x);
0.6666666666666666