# Prediction of single scores
normData <- prepareData(elfe)
m <- bestModel(data = normData)
predictRaw(35, 3.5, m$coefficients)
# using a cnorm object
result <- cnorm(raw = elfe$raw, group = elfe$group)
predictRaw(35, 3.5, result)
# Fitting complete data sets
fitted.values <- predict(m)
# break up contribution of each predictor variable
fitted.partial <- predict(m, type = "terms")
Run the code above in your browser using DataLab