regressionResults

Perform the regression of the linear model for predicting the response. Always uses coded (±1) levels; call the regressionResults overload that takes a coded parameter for raw-level regression.

Return

the regression results

Parameters

responseName

the name of the response variable in the regression

linearModel

the linear model specification for the regression


open override fun regressionResults(responseName: String, linearModel: LinearModel, coded: Boolean): RegressionResultsIfc(source)

Perform the regression of the linear model for predicting the response. Defaults to coded (±1) levels, the standard convention for regression on a designed experiment; the raw-data methods (replicatedDesignPointsAsDataFrame, replicatedDesignPointsWithResponse) default to coded = false instead.

Return

the regression results

Parameters

responseName

the name of the response variable in the regression

linearModel

the linear model specification for the regression

coded

if true perform the regression with the coded variables. The default is true.