Browse Source

minor typo fix

Lennart Wittkuhn 3 years ago
parent
commit
6483e26031
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/highspeed-analysis-repetition.Rmd

+ 1 - 1
code/highspeed-analysis-repetition.Rmd

@@ -585,7 +585,7 @@ lme_rep_count = lmer(mean_count ~ type * change + (1 + type + change|id),
       na.action = na.omit, control = lcctrl)
 summary(lme_rep_count)
 anova(lme_rep_count)
-emmeans_results = emmeans(lme_rep_count, list(pairwise ~ type | change))
+emmeans_results = emmeans(lme_rep_count, list(pairwise ~ type | change))
 emmeans_summary = summary(emmeans_results[[2]])
 ```