forked from crsh/papaja_man
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
executable file
·69 lines (49 loc) · 2.15 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title : "papaja: Reproducible APA manuscripts with R Markdown"
author : "Frederik Aust & Marius Barth"
institute : "University of Cologne, Germany"
date : "`r Sys.Date()`"
description : >
""
github-repo : crsh/papaja_man
bibliography : [references.bib, r-references.bib]
csl : apa6.csl
link-citations : yes
documentclass : book
site : bookdown::bookdown_site
output :
bookdown::gitbook:
includes:
after_body: footer.html
---
```{r libraries_and_options, echo = FALSE, message = FALSE, warning = FALSE}
library("rmarkdown")
library("car")
# library("ez")
library("papaja")
library("DiagrammeR")
library("ggplot2")
knitr::opts_chunk$set(fig.align = "center")
```
```{r cite_r, echo = FALSE}
r_refs("r-references.bib")
r_citations <- cite_r("r-references.bib", footnote = FALSE, pkgs = c("Matrix", "estimability", "reshape2"))
```
```{r not_on_cran, echo = FALSE}
not_on_cran <- "`papaja` has not yet been submitted to CRAN because it is under active development.
Currently, there are still a couple of loose ends we would like to tie up before we release the package to a larger audience.
If you would like to contribute to speed up the process, have a look at the chapters [Limitations] and [Future directions]."
```
# Preface {-}
This book will be a manual for the R package [papaja](https://github.com/crsh/papaja).
It is currently in the process of being written; I'm publishing new sections of the book as I'm writing them.
If you have suggestions for improvements or additional topics you would like to see covered, please let me know by opening an [issue on GitHub](https://github.com/crsh/papaja_man/issues) or creating a pull request.
`r not_on_cran`
If you are interested in reproducible research with R more generally, I recommend the books by @R-knitr and @gandrud_reproducible_2013.
Furthermore, @stodden_implementing_2014 give an overview of tools, practices, and platforms to implement reproducible research.
This manual is fully reproducible and was written in `r r_citations`.
Icons are provide royalty
---
```{r session_info, echo = FALSE}
devtools::session_info()
```