forked from psych252/psych252book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
executable file
·68 lines (53 loc) · 2.43 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
---
title: "Psych 710: Statistical Methods II"
author: "Robert Hawkins"
date: "`r Sys.Date()`"
book_filename: "psych710"
language:
ui:
chapter_name: "Chapter "
delete_merged_file: true
output_dir: "docs"
site: bookdown::bookdown_site
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
github-repo: SocialInteractionLab/psych710-notes
description: "Course notes for Psych 710."
---
# Preface {-}
These are the course notes for PSYCH 710, the second semester of graduate statistics in the UW-Madison Department of Psychology.
These notes are cloned from [the incredible book](https://psych252.github.io/psych252book/) developed by Tobi Gerstenberg for [Psych 252](https://psych252.github.io/) at Stanford, and lightly adapted to fit the needs of the course.
This course offers an introduction to advanced topics in statistics with the focus of understanding the kind of data we see in the behavioral and social sciences.
The aim is for statistical concepts to be tightly interwoven with the practice of psychological research, where we build models and work with data in R.
The centerpiece of the course is to achieve a deep understanding of the linear mixed-effects model, which we will approach from both a frequentist and Bayesian perspective.
Along the way, other topics will be visited (and revisited), including notions of power, measurement, non-parametric statistics, and model comparison.
## Course homepage {-}
https://socialinteractionlab.github.io/psych710
## License and citation {-}
This book is licensed under the [Creative Commons Zero v1.0 Universal license](https://github.com/psych252/psych252book/blob/master/LICENSE). If you find these materials helpful for your work, please cite the original book:
```
@book{gerstenberg2022methods,
title = {Statistical methods for the behavioral and social sciences},
author = {Tobias Gerstenberg},
year = {2022},
url = {https://psych252.github.io/psych252book/}
}
```
```{r index-01, include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
knitr::opts_chunk$set(
comment = "",
results = "hold",
fig.show = "hold")
library("ggplot2")
# set plotting theme
theme_set(theme_classic() + #set the theme
theme(text = element_text(size = 20))) #set the default text size
# export figures as pdf in latex
options(knitr.graphics.auto_pdf = TRUE)
```