Skip to content

Documentation v1.0.0


Documentation / @openassistant/plots / RegressionResults

Type Alias: RegressionResults ​

RegressionResults = object

Defined in: echarts/math/linear-regression.ts:60

The results of the linear regression.

Param ​

Whether the regression is valid.

Param ​

The R-squared value.

Param ​

The intercept of the regression.

Param ​

The standard error of the intercept.

Param ​

The t-statistic of the intercept.

Param ​

The p-value of the intercept.

Param ​

The slope of the regression.

Param ​

The standard error of the slope.

Param ​

The t-statistic of the slope.

Param ​

The p-value of the slope.

Properties ​

intercept ​

intercept: object

Defined in: echarts/math/linear-regression.ts:63

estimate ​

estimate: number

pValue ​

pValue: number

standardError ​

standardError: number

tStatistic ​

tStatistic: number


rSquared ​

rSquared: number

Defined in: echarts/math/linear-regression.ts:62


slope ​

slope: object

Defined in: echarts/math/linear-regression.ts:69

estimate ​

estimate: number

pValue ​

pValue: number

standardError ​

standardError: number

tStatistic ​

tStatistic: number


valid ​

valid: boolean

Defined in: echarts/math/linear-regression.ts:61

Released under the MIT License.