predict.relvms | R Documentation |
Predict the group scores (random effect latent variabl) from the extimated parameters
## S3 method for class 'relvms'
predict(x, newpars = NULL, newdata = NULL, level = 0.95)
x |
An object, whose class attribute is "relvms", i.e. multiple group of relvm. see also relvm function. |
newpars |
The matrix of modified parameters (factor loadings, etc.). |
newdata |
The new data table. this table include standardized measure score and measure weight. See example below. |
level |
The level of confident interval. This parameter may not be used any more. |
A updated object.
# predict with new parameters
fit <- relvm(mstbl(rstarating::cms_star_rating_input_2017dec))
pred <- predict(fit,newpars=fit$groups$pars) # update the newpars.
star <- rating(x=pred$groups$summary_score,method="rclus2",score_col="sum_score",iter.max=5000)
# predict with new data
newdata = list(mstbl_std = fit17$groups$mstbl_std, wtbl = fit17$groups$wtbl)
pred_newdata <- predict(fit,newdata=newdata) # update the newpars.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.