true_model_4_emo {quadVAR} | R Documentation |
True model for 4-emotion model
Description
This function generate the true model for the 4-emotion model. It can used to compare the estimated model with the true model, or to plot the true model.
Usage
true_model_4_emo(...)
## S3 method for class 'true_model_4_emo'
coef(object, ...)
## S3 method for class 'true_model_4_emo'
print(x, which = NULL, ...)
Arguments
... |
Not in use. |
object |
A true_model_4_emo object. |
x |
A true_model_4_emo object. |
which |
Which model to print out. There are four models in total, corresponding to the four variables. |
Value
A true_model_4_emo object.
NULL, but prints out the true model.
Methods (by generic)
-
coef(true_model_4_emo)
: This function returns the coefficients for the 4-emotion model. It is also used in other functions to generate the linearized version of the true model and to make plots. It returns a list of coefficients for the 4-emotion model, in the same format ascoef.quadVAR()
-
print(true_model_4_emo)
: This function prints out the true model for the 4-emotion model in the same format asRAMP::RAMP()
, to help users to compare the true model and the estimated model.
See Also
true_model_4_emo()
, compare_4_emo()
, quadVAR()
Examples
coef(true_model_4_emo())
plot(true_model_4_emo())
if (interactive()) {
# This code will only run in an interactive session
plot(true_model_4_emo(), interactive = TRUE)
}