Skip to content

Instantly share code, notes, and snippets.

@t-student
Last active January 5, 2018 04:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t-student/015977b219d8741194d1d8e07140067e to your computer and use it in GitHub Desktop.
Save t-student/015977b219d8741194d1d8e07140067e to your computer and use it in GitHub Desktop.
---
title: "A test"
author: "t-student"
date: "January 5, 2018"
output: html_document
---
I'll be exploring the differences between these three models:
```{r, eval = FALSE}
subj_intercepts_mod <- lmer(rt ~ A + (1|Subject))
subjA_intercepts_mod <- lmer(rt ~ 1 + (1|Subject:A))
subj_slopes_mod <- lmer(rt ~ A + (A|Subject))
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment