Last active
January 5, 2018 04:04
-
-
Save t-student/015977b219d8741194d1d8e07140067e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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