Closed Tsode closed 1 year ago
Please note that your question is in violation of the last ground rule about not using the same names for different objects. But I will answer your question anyway.
This is nothing peculiar to emtrends()
. It happens because you have specified exactly this behavior in your model. The fitted model is of the form $\hat y = a + b\cdot x_1x_2$. Taking $x_1$ in the role of var
in the emtrends()
call, then the trend is the derivative w.r.t. $x_1$, $t = b\cdot x_2$. If we now take $x_2$ values of $1,2,3$, we obtain $t_1,t_2,t_3 = b, 2b, 3b$ so that $t_1-t_2 = -b,$ $t_3 - t_1 = -2b$, and $t_2-t_3 = -b$ In all cases, we are testing the significance of $-b$ or a multiple thereof.
This is verified by your second model:
> model2<-lm(Sepal.Length ~ Sepal.Width * Petal.Length, data=iris)
> summary(model2)
Call:
lm(formula = Sepal.Length ~ Sepal.Width * Petal.Length, data = iris)
Residuals:
Min 1Q Median 3Q Max
-0.99594 -0.21165 -0.01652 0.21244 0.77249
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 1.40438 0.53253 2.637 0.00926
Sepal.Width 0.84996 0.15800 5.379 2.91e-07
Petal.Length 0.71846 0.13886 5.174 7.45e-07
Sepal.Width:Petal.Length -0.07701 0.04305 -1.789 0.07571
Residual standard error: 0.3308 on 146 degrees of freedom
Multiple R-squared: 0.8436, Adjusted R-squared: 0.8404
F-statistic: 262.5 on 3 and 146 DF, p-value: < 2.2e-16
Note that the $t$ ratio for Sepal.Width:Petal.Length
is $-1.789$, which is the negative of what appears in your output. Your P value is different because the software is applying a Tukey adjustment (which is incorrect here because the estimates are dependent).
Hi, thank you very much for your answer and sorry about the vio and opening a non-issue!
Explain your question
Hi! I'd like to conduct pairwise comparisons to a continuous x continuous interaction. I remember doing this with no issue sometime in the past using emtrends and choosing certain scale points from the other predictor (e.g. if I standardized the predictors, I used -1, 0 and 1).
However, now that I try this, all models and data give me identical t- and p-values for the pairwise comparisons. For instance, using HSB data from the candisc package:
or with iris data
The same happens with all data I have tried, my own data and inbuilt datasets and regardless of how many points I specify in the list, and regardless of if I use the pairwise command inside emtrends command or emtrends followed by pairs command.
I'm really sorry if I bother you for nothing but I didn't find an answer in the vignettes. This does not happen when I explore a categorical x continuous interaction using emtrends.
best, Sointu Leikas