forked from lkumle/power_notebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
25 lines (20 loc) · 957 Bytes
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
title: 'Estimating power in linear and generalized linear mixed models: an open introduction
and tutorial in R.'
author: "Kumle, L., Võ, M. L., & Draschkow, D. (in press). Estimating power in (generalized) linear mixed models: an open introduction and tutorial in R. *Behavior Research Methods*. doi:10.3758/s13428-021-01546-0"
---
### Notebooks and Supplemental Material
```{r echo=FALSE, results='asis'}
rmd <- Sys.glob("*.Rmd")
rmd <- rmd[rmd != "index.Rmd"]
html <- sub(".Rmd", ".html", rmd)
lines <- lapply(rmd, readLines)
yaml <- lapply(lines, rmarkdown:::parse_yaml_front_matter)
cat("<ul>")
for (i in seq_along(rmd)) {
cat(paste0("<li><a href='", html[i], "'>", yaml[[i]]$title, "</a><br/>",
"<code>", rmd[i], "</code>", "</li>"))
}
cat("</ul>")
```
See the [GitHub repository](https://github.com/lkumle/power_notebooks) for the source and [mixedpower](https://github.com/DejanDraschkow/mixedpower) for more information.