I have been looking around and I am quite confused about Tukey adjustment in emmeans. The documentation of emmeans doesn't mention Tukey HSD at all, but in here it is said that "For most contrast() results, adjust is often something else, depending on what type of contrasts are created. For example, pairwise comparisons default to adjust = "tukey", i.e., the Tukey HSD method.".
As I understand, Tukey HSD is essentially a series of pairwise t-test with adjustment for type I error. But the emmeans function is calculating estimated marginal means (EMMs), which I assume are not pairwise t-tests; then applying the Tukey adjustment to emmeans output, would not be an equivalent to Tukey HSD post hoc test.
A second related question would be what the function "tukey.emmc", also from emmeans, does?
[Update] I guess my second question is, what is the difference between tukey.emmc and contrast() with 'adjust = "tukey"'?
Using
adjust = "tukey"
means that critical values and adjusted P values are obtained from the Studentized range distributionqtukey()
andptukey()
respectively. Those are the same critical values that are used in the Tukey HSD test. But to put a very fine edge on it, the Tukey HSD method is really defined only for independent samples of equal size, which may or may not be the case foremmeans()
results. For more details, see? summary.emmGrid
and refer to the section on P-value adjustments.Regarding the second question, both
pairwise.emmc()
generates contrast coefficients for pairwise comparisons; as doesrevpairwise.emmc()
. Here is a third possibility:That is,
tukey.emmc()
invokes one of those pairwise-comparison methods depending onreverse
. Thus,contrast(..., method = "tukey", reverse = TRUE)
is equivalent tocontrast(..., method = "revpairwise")
.Every
.emmc
function passes a default adjustment method tocontrast()
, and in the case ofpairwise.emmc()
andtukey.emmc()
, that default isadjust = "tukey"
. Thus, callingcontrast(..., method = "pairwise")
is the same ascontrast(..., method = "pairwise", adjust = "tukey")
. Whereas calling some other contrast function may produce different defaults. For example,consec.emmc()
passes the"mvt"
adjustment by default:An additional comment about the Tukey adjustment: That adjustment is only appropriate for a single set of pairwise comparisons. If you specify
adjust = "tukey"
for non-pairwise comparisons or arbitrary contrasts, it will overrule you and use the"sidak"
adjustment instead.