Description Usage Arguments Details Value Examples
This takes the variables needed to assess an individual-level moderator on hearsay acuracy, and builds a model for lavaan estimating the corresponding parameters. At a minimum, it requires target self-reports, P2-reports, an individual-level moderator, and the interaction term. Note that the P2-reports and moderator variable should be mean-centered.
1 2 3 | rep_accuracy_id_mods_builder(target_self, p2_reports, id_mod_variable,
interaction_term, n_triads = length(target_self), n_ts_per_p2s = 1,
n_p2s_per_ts = 1)
|
target_self |
Quoted column names that contain target self-reports. If more than one is supplied, the order must match the other rating types. |
p2_reports |
Quoted column names that contain P2 reports, or ratings made by the person that knows the target indirectly through the corresponding P1. Ratings should be grand-mean-centered to increase the interpretibility of the model parameters. If more than one is supplied, the target-wise order must match the other rating types. |
id_mod_variable |
Quoted column names that contain the individual-level moderator of interest. If more than one is supplied from multiple exchangeable triads, the order must match the order of the ratings. Like P2-reports, the variable should be mean-centered to facilitate interpretability. |
interaction_term |
Quoted column names that contain the interaction term, or the product of the mean-centered P2-report and the mean-centered moderator variable. If more than one is supplied from multiple exchangeable triads, the target-wise order must match the order of the ratings. |
n_triads |
The number of exchangeable triads in each group. By default, this is determined by counting the number of target self-reports. This parameter rarely needs to be changed. |
n_ts_per_p2s |
The number of targets that each P2 rated. This defaults to 1. Currently, only values of 1 are supported. |
n_p2s_per_ts |
The number of P2s that rated each target;. This defaults to 1. Currently, only values of 1 are supported. |
The parameters for the individual-level moderator analyses are:
hearsay accuracy main effect; this should correspond to hearsay accuracy at average level of moderator variable (if data were properly mean-centered).
The meain effect of the moderator variable; it can be interpreted as the difference in target self-reports related to differences in the individual-level moderator variable.
This is the interaction term. It indicates the extent to which hearsay accuracy, depends on the moderator variable
variance for T(T)
variance for P2(T)
variance for moderator variable
variance for interaction term
intercept for T(T)
intercept for P2(T)
intercept for moderator variable
intercept for interaction term
The function can handle up to n exchangeable triads.
The function returns a list containing an
object of class tbl_df
and a string object of the model
in lavaan syntax. Model information
includes the type of model, the number of exchangeable triads, and the number
of p1s per p2s, and the number of p2s per p1s.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | data("rep_sim_data")
# Prepare data
moderator_data <- rep_sim_data %>%
dplyr::mutate(B_C_agreeableness_cent = scale(B_C_agreeableness, scale = FALSE),
D_A_agreeableness_cent = scale(D_A_agreeableness, scale = FALSE),
B_iri_perspective_cent = scale(B_iri_perspective, scale = FALSE),
D_iri_perspective_cent = scale(D_iri_perspective, scale = FALSE),
B_ptXagree_interaction = B_C_agreeableness_cent*B_iri_perspective_cent,
D_ptXagree_interaction = D_A_agreeableness_cent*D_iri_perspective_cent)
agree_pt_mods_hearacc_model <- rep_accuracy_id_mods_builder(target_self = c("C_C_agreeableness", "A_A_agreeableness"),
p2_reports = c("B_C_agreeableness_cent", "D_A_agreeableness_cent"),
id_mod_variable = c("B_iri_perspective_cent", "D_iri_perspective_cent"),
interaction_term = c("B_ptXagree_interaction", "D_ptXagree_interaction"))
# view model
cat(agree_pt_mods_hearacc_model$model)
# view model information
agree_pt_mods_hearacc_model$rep_model_info
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.