regressionFunction {cNORM} | R Documentation |
The method builds the regression function for the regression model, including the beta weights. It can be used to predict the raw scores based on age and location.
regressionFunction(model, raw = NULL, digits = NULL)
model |
The regression model from the bestModel function |
raw |
The name of the raw value variable (default 'raw') |
digits |
Number of digits for formatting the coefficients |
The regression formula as a string
normData <- prepareData() model <- bestModel(normData) regressionFunction(model)