RegrSYY
No overview available.
Attributes
| Attribute | Type | Description |
|---|---|---|
| function | string = REGR_SYY | The SQL aggregate function name used to calculate the sum of squares of the dependent variable in a linear regression model. |
Constructor
Signature
def RegrSYY() - > null
Signature
def RegrSYY(
y: [Expression](../../../../db/models/expressions/expression.md?sid=django_db_models_expressions_expression),
x: [Expression](../../../../db/models/expressions/expression.md?sid=django_db_models_expressions_expression),
**extra: dict
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| y | [Expression](../../../../db/models/expressions/expression.md?sid=django_db_models_expressions_expression) | The dependent variable expression used in the regression calculation. |
| x | [Expression](../../../../db/models/expressions/expression.md?sid=django_db_models_expressions_expression) | The independent variable expression used in the regression calculation. |
| **extra | dict | Additional keyword arguments for configuring the aggregate expression, such as filter or output_field. |