I have a model where I am trying to predict var_1 by the interaction between var_2 and var_3. I would like to test hypotheses regarding how var_1 is predicted based on different levels of var_2 and var_3. All variables are continuous.
For example, in this conditional_effects plot, it seems that at high levels of var_3, the relationship between var_1 and var_2 is positive, while for low levels of var_3, the relationship between var_1 and var_2 is negative.
Is it possible to test this in a hypothesis? A method I’ve seen online is to multiply the interaction term by the SD, as below. But I don’t really understand how this works with continuous variables. Is the hypothesis testing the average level of var_2 at different levels of var_3, or the slope of the interaction between var_2 and var_3 at different levels of var_3?
I can’t help with the use of hypothesis(), but since you welcome any feedback, if I was dealing with this I would do something like this:
library(emmeans)
trends = emtrends(m,
var = "var_2",
specs = "var_3",
at = list(var_3 = c(2.37, 3.48)))
summary(trends)
pairs(trends)
emtrends() will give you the slopes of the var_1 ~ var_2 relationship at specified values of var_3. From a nhst standpoint, is the credible interval at var_3=2.37 clearly positive? Is the other one clearly negative?
Then pairs gives you the difference of the two slopes. Is that one clearly positive?
You could also use bayestestR::p_direction()
p_direction(emtrends(m,
var = "var_2",
specs = "var_3",
at = list(var_3 = c(2.37, 3.48))))
p_direction(pairs(trends))
Thanks so much for the idea! Coincidentally, since I posted the question I have also looked into how to run the contrasts with emtrends, so this is very useful!
Do you have any experience with ROPE and bayes factor obtained from emtrends comparisons?
I have less than 5% of pd inside ROPE, which would mean that I can reject the null value, but at the same time I have a very small BF (<0.1), which if I understand the bayestestR output correctly, this would mean that the mean is 0. These two don’t seem to go hand in hand, so I must be mistaken somewhere.