-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.Rmd
127 lines (79 loc) · 4.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
title: "Encyclopedia of Quantitative Methods in R, vol. 1: Data Wrangling"
author: "Sarah Schwartz & Tyson Barrett"
date: "Last updated: `r Sys.Date()`"
documentclass: book
description: "Data Management: Importing, Subsetting, Creating Variables, and Saving."
knit: "bookdown::render_book"
cover-image: "EQM_v1_cover.png"
github-repo: cehs-research/eBook_wrangle
site: bookdown::bookdown_site
output:
bookdown::gitbook:
split_bib: false
bibliography: [book.bib, packages.bib]
biblio-style: "apalike"
link-citations: yes
---
# Welcome {-}
Backgroup and links to other volumes of this encyclopedia may be found at the [Encyclopedia's Home Website](https://cehs-research.github.io/eBooks/).
![](images/common/EQM_v2_header.png)
```{r, echo=FALSE, include=FALSE, comment=FALSE, message=FALSE}
library(tidyverse, quietly = TRUE)
library(kableExtra)
```
## Blocked Notes {-}
Thoughout all the eBooks in this encyclopedia, several small secitons will be blocked out in the following ways:
```{block type='rmdconstruct', echo=TRUE}
These blocks denote an area **UNDER CONSTRUCTION**, so check back often. This massive undertaking started during the summer of 2018 and is far from complete. The outline of seven volumes is given above despite any one being complete. Feedback is welcome via either author's email.
```
```{block type='rmdimportant', echo=TRUE}
These blocks denote something **EXTREMELY IMPORTANT**. Do NOT skip these notes as they will be used very sparingly.
```
```{block type='rmddownload', echo=TRUE}
These blocks denote something to **DOWNLOAD**. This may include software installations, example datasets, or notebook code files.
```
```{block type='rmdlightbulb', echo=TRUE}
These blocks denote something **INTERESTING**. These point out information we found of interest or added value.
```
```{block type='rmdlink', echo=TRUE}
These blocks denote **LINKS** to other websites. This may include instructional video clips, articles, or blog posts. We are all about NOT re-creating the wheel. If somebody else has described or illustrated a topic well, we celebrate it!
```
## Code and Output {-}
This is how $R$ code is shown:
```{r, eval=FALSE}
1 + 1
```
This is what the output of the $R$ code above will look:
```{r, echo=FALSE}
# This is a Code Chunk
1 + 1
```
## The Authors {-}
```{r, echo=FALSE}
tribble( ~Sarah, ~Tyson,
"![](images/common/Sarah_headshot.jpg){width=300px}",
"![](images/common/Tyson_headshot.jpg){width=300px}",
"[www.SarahSchwartzStats.com](http://www.sarahschwartzstats.com/) ",
"[www.TysonBarrett.com](http://tysonbarrett.com/)",
"[Statistical Consulting Studio](https://cehs.usu.edu/research/statstudio/index)",
"[Data Science and Discover Unit](https://cehs.usu.edu/research/dsdu/index)",
"![](images/common/StatStudioLogo_dark_small.png){width=300px}",
"![](images/common/dsdu_logo.PNG){width=300px}") %>%
data.frame() %>%
kableExtra::kable(col.names = c("Dr. Sarah Schwartz",
"Dr. Tyson Barrett"),
align = "c") %>%
kableExtra::row_spec(row = 0,
font_size = 20)
```
### Why choose R ? {-}
```{block type='rmdlink', echo=TRUE}
**Check it out:** an article from Fall 2016... [No more excuses: R is better than SPSS for psychology undergrads, and students agree](https://datahowler.wordpress.com/2016/09/10/no-more-excuses-r-is-better-than-spss-for-psychology-undergrads-and-students-agree/)
```
### FYI {-}
This entire encyclopedia is written in $R Markdown$, using $R Studio$ as the text editor and the `bookdown` package to turn a collection of markdown documents into a coherent whole. The book's source code is hosted on GitHub. If you notice typos or other issues, feel free to email either of the authors.
This work is licensed under the [Attribution-NonCommercial-NoDerivatives 4.0 International](https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode) License.
![](images/common/Education_Logo_WHITE-02.png){width=300px}