check_Phi | R Documentation |
Phi
ArgumentWrite a textual interpretation of the values in Phi
. This can be used to check if Phi
has been correctly specified.
check_Phi(Phi)
Phi |
A matrix, with standardized autoregressive effects (on the diagonal) and cross-lagged effects (off-diagonal) in the population. Columns represent predictors and rows represent outcomes. |
No return value, called for side effects.
# Correctly specified `Phi`
Phi1 <- matrix(c(.4, .1, .2, .3), ncol = 2, byrow = TRUE)
check_Phi(Phi1)
# `Phi` with too large standardized effects
Phi2 <- matrix(c(.6, .5, .4, .7), ncol = 2, byrow = TRUE)
Phi2 <- check_Phi(Phi2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.