-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Rhistory
372 lines (372 loc) · 25.2 KB
/
.Rhistory
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
rmarkdown::render_site()
rmarkdown::render_site()
library(tidyverse, quietly = TRUE)
library(kableExtra)
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)
library(tidyverse, quietly = TRUE)
library(kableExtra)
tribble( ~Volume, ~Title, ~Content,
"0. Software",
"[Computer Setup](https://cehs-research.github.io/eBook_install/)",
"Installing software (R, R Studio, and Packages), workspace oridentation, notebook workflow, and periodic updating",
"1. Wrangling",
"[Data Management](https://cehs-research.github.io/eBook_wrangle/)",
"Importing data files (SPSS, excel, csv, ect.), sub-setting (observations and variables), creating new variables, and saving revised data",
"2. Exploratory",
"Exploratory Data Analysis",
"Computing and tabulating summary statistics (M/SD, count/%) and creating descriptive visualizations of distributions (boxplots, histograms) and relationships (scatter plots)",
"3. ANOVA",
"Testing Mean Differences",
"t-tests (independent groups, paired observations), ANOVA (independent or between subjects, 1-way, 2-way), RM ANOVA (repeated meausres, between subjects), mixed ANOVA (both independent and between subjects), visualizations (marginal means to prob interactions) and post hoc tests (multiple corrections, contrast statements)",
"4. Regression",
"Regression",
"Calculating and visualizating correlation, multiple regression models (fitting, tabulating results, graphicaly probing interactions), and generalizing the distribution (GLM: logistic regression, poisson regression, ect.)",
"5. Multilevel",
"Mixed Effects Regression",
"Modeling clustered/hierarchical or longitudinal/repeated observations with multilevel models (MLM, LMM, GLMM, HLM), including computing ICCs, model fitting, tabulating results, and visualizings (marginal means to prob interactions); generalized estimating equations (GEE)",
"6. SEM",
"Structural Equation Modeling",
" Factor Analysis (EFA, CFA), latent variables and path analysis",
"7. Other",
"Additional Topics",
"Room for Future Expansion") %>%
kableExtra::kable(align = c("c", "l", "l"))
rmarkdown::render_site()
rmarkdown::render_site()
tribble( ~Sarah, ~Tyson,
"[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)" %>%
data.frame() %>%
kableExtra::kable(col.names = c("Dr. Sarah Schwartz",
"Dr. Tyson Barrett"),
align = "c") %>%
kableExtra::row_spec(row = 0,
font_size = 20)
library(tidyverse, quietly = TRUE)
library(kableExtra)
tribble( ~Sarah, ~Tyson,
"[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)" %>%
data.frame() %>%
kableExtra::kable(col.names = c("Dr. Sarah Schwartz",
"Dr. Tyson Barrett"),
align = "c") %>%
kableExtra::row_spec(row = 0,
font_size = 20)
library(tidyverse, quietly = TRUE)
library(kableExtra)
tribble( ~Volume, ~Title, ~Content,
"0. Software",
"[Computer Setup](https://cehs-research.github.io/eBook_install/)",
"Installing software (R, R Studio, and Packages), workspace oridentation, notebook workflow, and periodic updating",
"1. Wrangling",
"[Data Management](https://cehs-research.github.io/eBook_wrangle/)",
"Importing data files (SPSS, excel, csv, ect.), sub-setting (observations and variables), creating new variables, and saving revised data",
"2. Exploratory",
"Exploratory Data Analysis",
"Computing and tabulating summary statistics (M/SD, count/%) and creating descriptive visualizations of distributions (boxplots, histograms) and relationships (scatter plots)",
"3. ANOVA",
"Testing Mean Differences",
"t-tests (independent groups, paired observations), ANOVA (independent or between subjects, 1-way, 2-way), RM ANOVA (repeated meausres, between subjects), mixed ANOVA (both independent and between subjects), visualizations (marginal means to prob interactions) and post hoc tests (multiple corrections, contrast statements)",
"4. Regression",
"Regression",
"Calculating and visualizating correlation, multiple regression models (fitting, tabulating results, graphicaly probing interactions), and generalizing the distribution (GLM: logistic regression, poisson regression, ect.)",
"5. Multilevel",
"Mixed Effects Regression",
"Modeling clustered/hierarchical or longitudinal/repeated observations with multilevel models (MLM, LMM, GLMM, HLM), including computing ICCs, model fitting, tabulating results, and visualizings (marginal means to prob interactions); generalized estimating equations (GEE)",
"6. SEM",
"Structural Equation Modeling",
" Factor Analysis (EFA, CFA), latent variables and path analysis",
"7. Other",
"Additional Topics",
"Room for Future Expansion") %>%
kableExtra::kable(align = c("c", "l", "l"))
tribble( ~Sarah, ~Tyson,
"[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)" %>%
data.frame() %>%
kableExtra::kable(col.names = c("Dr. Sarah Schwartz",
"Dr. Tyson Barrett"),
align = "c") %>%
kableExtra::row_spec(row = 0,
font_size = 20)
tribble( ~Sarah, ~Tyson,
"[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)" %>%
data.frame()
data.frame()
tribble( ~Sarah, ~Tyson,
"[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)" %>%
data.frame()
tribble( ~Sarah, ~Tyson,
tribble( ~Sarah, ~Tyson,
"[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)") %>%
data.frame() %>%
kableExtra::kable(col.names = c("Dr. Sarah Schwartz",
"Dr. Tyson Barrett"),
align = "c") %>%
kableExtra::row_spec(row = 0,
font_size = 20)
rmarkdown::render_site()
column_spec(2, width = "30em",
tribble( ~Volume, ~Title, ~Content,
"0. Software",
"[Computer Setup](https://cehs-research.github.io/eBook_install/)",
"Installing software (R, R Studio, and Packages), workspace oridentation, notebook workflow, and periodic updating",
"1. Wrangling",
"[Data Management](https://cehs-research.github.io/eBook_wrangle/)",
"Importing data files (SPSS, excel, csv, ect.), sub-setting (observations and variables), creating new variables, and saving revised data",
"2. Exploratory",
"Exploratory Data Analysis",
"Computing and tabulating summary statistics (M/SD, count/%) and creating descriptive visualizations of distributions (boxplots, histograms) and relationships (scatter plots)",
"3. ANOVA",
"Testing Mean Differences",
"t-tests (independent groups, paired observations), ANOVA (independent or between subjects, 1-way, 2-way), RM ANOVA (repeated meausres, between subjects), mixed ANOVA (both independent and between subjects), visualizations (marginal means to prob interactions) and post hoc tests (multiple corrections, contrast statements)",
"4. Regression",
"Regression",
"Calculating and visualizating correlation, multiple regression models (fitting, tabulating results, graphicaly probing interactions), and generalizing the distribution (GLM: logistic regression, poisson regression, ect.)",
"5. Multilevel",
"Mixed Effects Regression",
"Modeling clustered/hierarchical or longitudinal/repeated observations with multilevel models (MLM, LMM, GLMM, HLM), including computing ICCs, model fitting, tabulating results, and visualizings (marginal means to prob interactions); generalized estimating equations (GEE)",
"6. SEM",
"Structural Equation Modeling",
" Factor Analysis (EFA, CFA), latent variables and path analysis",
"7. Other",
"Additional Topics",
"Room for Future Expansion") %>%
kableExtra::kable(align = c("c", "l", "l")) %>%
column_spec(2, width = "30em",
tribble( ~Volume, ~Title, ~Content,
"0. Software",
"[Computer Setup](https://cehs-research.github.io/eBook_install/)",
"Installing software (R, R Studio, and Packages), workspace oridentation, notebook workflow, and periodic updating",
"1. Wrangling",
"[Data Management](https://cehs-research.github.io/eBook_wrangle/)",
"Importing data files (SPSS, excel, csv, ect.), sub-setting (observations and variables), creating new variables, and saving revised data",
"2. Exploratory",
"Exploratory Data Analysis",
"Computing and tabulating summary statistics (M/SD, count/%) and creating descriptive visualizations of distributions (boxplots, histograms) and relationships (scatter plots)",
"3. ANOVA",
"Testing Mean Differences",
"t-tests (independent groups, paired observations), ANOVA (independent or between subjects, 1-way, 2-way), RM ANOVA (repeated meausres, between subjects), mixed ANOVA (both independent and between subjects), visualizations (marginal means to prob interactions) and post hoc tests (multiple corrections, contrast statements)",
"4. Regression",
"Regression",
"Calculating and visualizating correlation, multiple regression models (fitting, tabulating results, graphicaly probing interactions), and generalizing the distribution (GLM: logistic regression, poisson regression, ect.)",
"5. Multilevel",
"Mixed Effects Regression",
"Modeling clustered/hierarchical or longitudinal/repeated observations with multilevel models (MLM, LMM, GLMM, HLM), including computing ICCs, model fitting, tabulating results, and visualizings (marginal means to prob interactions); generalized estimating equations (GEE)",
"6. SEM",
"Structural Equation Modeling",
" Factor Analysis (EFA, CFA), latent variables and path analysis",
"7. Other",
"Additional Topics",
"Room for Future Expansion") %>%
kableExtra::kable(align = c("c", "l", "l")) %>%
column_spec(2, width = "30em")
tribble( ~Volume, ~Title, ~Content,
"0. Software",
"[Computer Setup](https://cehs-research.github.io/eBook_install/)",
"Installing software (R, R Studio, and Packages), workspace oridentation, notebook workflow, and periodic updating",
"1. Wrangling",
"[Data Management](https://cehs-research.github.io/eBook_wrangle/)",
"Importing data files (SPSS, excel, csv, ect.), sub-setting (observations and variables), creating new variables, and saving revised data",
"2. Exploratory",
"Exploratory Data Analysis",
"Computing and tabulating summary statistics (M/SD, count/%) and creating descriptive visualizations of distributions (boxplots, histograms) and relationships (scatter plots)",
"3. ANOVA",
"Testing Mean Differences",
"t-tests (independent groups, paired observations), ANOVA (independent or between subjects, 1-way, 2-way), RM ANOVA (repeated meausres, between subjects), mixed ANOVA (both independent and between subjects), visualizations (marginal means to prob interactions) and post hoc tests (multiple corrections, contrast statements)",
"4. Regression",
"Regression",
"Calculating and visualizating correlation, multiple regression models (fitting, tabulating results, graphicaly probing interactions), and generalizing the distribution (GLM: logistic regression, poisson regression, ect.)",
"5. Multilevel",
"Mixed Effects Regression",
"Modeling clustered/hierarchical or longitudinal/repeated observations with multilevel models (MLM, LMM, GLMM, HLM), including computing ICCs, model fitting, tabulating results, and visualizings (marginal means to prob interactions); generalized estimating equations (GEE)",
"6. SEM",
"Structural Equation Modeling",
" Factor Analysis (EFA, CFA), latent variables and path analysis",
"7. Other",
"Additional Topics",
"Room for Future Expansion") %>%
kableExtra::kable(align = c("c", "l", "l")) %>%
column_spec(2, width = "30em")
library(tidyverse, quietly = TRUE)
library(kableExtra)
tribble( ~Volume, ~Title, ~Content,
"0. Software",
"[Computer Setup](https://cehs-research.github.io/eBook_install/)",
"Installing software (R, R Studio, and Packages), workspace oridentation, notebook workflow, and periodic updating",
"1. Wrangling",
"[Data Management](https://cehs-research.github.io/eBook_wrangle/)",
"Importing data files (SPSS, excel, csv, ect.), sub-setting (observations and variables), creating new variables, and saving revised data",
"2. Exploratory",
"Exploratory Data Analysis",
"Computing and tabulating summary statistics (M/SD, count/%) and creating descriptive visualizations of distributions (boxplots, histograms) and relationships (scatter plots)",
"3. ANOVA",
"Testing Mean Differences",
"t-tests (independent groups, paired observations), ANOVA (independent or between subjects, 1-way, 2-way), RM ANOVA (repeated meausres, between subjects), mixed ANOVA (both independent and between subjects), visualizations (marginal means to prob interactions) and post hoc tests (multiple corrections, contrast statements)",
"4. Regression",
"Regression",
"Calculating and visualizating correlation, multiple regression models (fitting, tabulating results, graphicaly probing interactions), and generalizing the distribution (GLM: logistic regression, poisson regression, ect.)",
"5. Multilevel",
"Mixed Effects Regression",
"Modeling clustered/hierarchical or longitudinal/repeated observations with multilevel models (MLM, LMM, GLMM, HLM), including computing ICCs, model fitting, tabulating results, and visualizings (marginal means to prob interactions); generalized estimating equations (GEE)",
"6. SEM",
"Structural Equation Modeling",
" Factor Analysis (EFA, CFA), latent variables and path analysis",
"7. Other",
"Additional Topics",
"Room for Future Expansion") %>%
kableExtra::kable(align = c("c", "l", "l")) %>%
column_spec(2, width = "30em")
tribble( ~Volume, ~Title, ~Content,
"0. Software",
"[Computer Setup](https://cehs-research.github.io/eBook_install/)",
"Installing software (R, R Studio, and Packages), workspace oridentation, notebook workflow, and periodic updating",
"1. Wrangling",
"[Data Management](https://cehs-research.github.io/eBook_wrangle/)",
"Importing data files (SPSS, excel, csv, ect.), sub-setting (observations and variables), creating new variables, and saving revised data",
"2. Exploratory",
"Exploratory Data Analysis",
"Computing and tabulating summary statistics (M/SD, count/%) and creating descriptive visualizations of distributions (boxplots, histograms) and relationships (scatter plots)",
"3. ANOVA",
"Testing Mean Differences",
"t-tests (independent groups, paired observations), ANOVA (independent or between subjects, 1-way, 2-way), RM ANOVA (repeated meausres, between subjects), mixed ANOVA (both independent and between subjects), visualizations (marginal means to prob interactions) and post hoc tests (multiple corrections, contrast statements)",
"4. Regression",
"Regression",
"Calculating and visualizating correlation, multiple regression models (fitting, tabulating results, graphicaly probing interactions), and generalizing the distribution (GLM: logistic regression, poisson regression, ect.)",
"5. Multilevel",
"Mixed Effects Regression",
"Modeling clustered/hierarchical or longitudinal/repeated observations with multilevel models (MLM, LMM, GLMM, HLM), including computing ICCs, model fitting, tabulating results, and visualizings (marginal means to prob interactions); generalized estimating equations (GEE)",
"6. SEM",
"Structural Equation Modeling",
" Factor Analysis (EFA, CFA), latent variables and path analysis",
"7. Other",
"Additional Topics",
"Room for Future Expansion") %>%
kableExtra::kable(align = c("c", "l", "l")) %>%
column_spec(1, width = "15em") %>%
column_spec(2, width = "22em")
tribble( ~Volume, ~Title, ~Content,
"0. Software",
"[Computer Setup](https://cehs-research.github.io/eBook_install/)",
"Installing software (R, R Studio, and Packages), workspace oridentation, notebook workflow, and periodic updating",
"1. Wrangling",
"[Data Management](https://cehs-research.github.io/eBook_wrangle/)",
"Importing data files (SPSS, excel, csv, ect.), sub-setting (observations and variables), creating new variables, and saving revised data",
"2. Exploratory",
"Exploratory Data Analysis",
"Computing and tabulating summary statistics (M/SD, count/%) and creating descriptive visualizations of distributions (boxplots, histograms) and relationships (scatter plots)",
"3. ANOVA",
"Testing Mean Differences",
"t-tests (independent groups, paired observations), ANOVA (independent or between subjects, 1-way, 2-way), RM ANOVA (repeated meausres, between subjects), mixed ANOVA (both independent and between subjects), visualizations (marginal means to prob interactions) and post hoc tests (multiple corrections, contrast statements)",
"4. Regression",
"Regression",
"Calculating and visualizating correlation, multiple regression models (fitting, tabulating results, graphicaly probing interactions), and generalizing the distribution (GLM: logistic regression, poisson regression, ect.)",
"5. Multilevel",
"Mixed Effects Regression",
"Modeling clustered/hierarchical or longitudinal/repeated observations with multilevel models (MLM, LMM, GLMM, HLM), including computing ICCs, model fitting, tabulating results, and visualizings (marginal means to prob interactions); generalized estimating equations (GEE)",
"6. SEM",
"Structural Equation Modeling",
" Factor Analysis (EFA, CFA), latent variables and path analysis",
"7. Other",
"Additional Topics",
"Room for Future Expansion") %>%
kableExtra::kable(align = c("c", "l", "l")) %>%
column_spec(1, width = "15em") %>%
column_spec(2, width = "18em")
data.frame("Vol. 0" = c("[![vol 1](common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)"))
data.frame("Vol. 0" = c("[![vol 1](common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)")) %>% kableExtra::kable()
library(tidyverse, quietly = TRUE)
library(kableExtra)
data.frame("Vol. 0" = c("[![vol 1](common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)")) %>% kableExtra::kable()
data.frame("0" = c("[![vol 0](common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)"),
"1" = c("[![vol 1](common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_wrangle/)")) %>% kableExtra::kable()
data.frame("v0" = c("[![vol 0](common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)"),
"v1" = c("[![vol 1](common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_wrangle/)")) %>% kableExtra::kable()
data.frame("v0" = c("[![vol 0](images/common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)"),
"v1" = c("[![vol 1](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_wrangle/)"),
"v1" = c("[![vol 2](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_exploree/)"),
"v1" = c("[![vol 3](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_ANOVA/)"),
"v1" = c("[![vol 4](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_regression/)"),
"v1" = c("[![vol 5](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_multilevel/)"),
"v1" = c("[![vol 6](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_SEM/)"),
"v1" = c("[![vol 7](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_misc/)")) %>% kableExtra::kable()
data.frame("v0" = c("[![vol 0](images/common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)"),
"v1" = c("[![vol 1](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_wrangle/)"),
"v2" = c("[![vol 2](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_exploree/)"),
"v3" = c("[![vol 3](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_ANOVA/)"),
"v4" = c("[![vol 4](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_regression/)"),
"v5" = c("[![vol 5](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_multilevel/)"),
"v6" = c("[![vol 6](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_SEM/)"),
"v7" = c("[![vol 7](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_misc/)")) %>% kableExtra::kable()
data.frame("v0" = c("[![vol 0](images/common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)"),
"v1" = c("[![vol 1](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_wrangle/)"),
"v2" = c("[![vol 2](images/common/EQM_v2_button_tall.png)](https://cehs-research.github.io/eBook_exploree/)"),
"v3" = c("[![vol 3](images/common/EQM_v3_button_tall.png)](https://cehs-research.github.io/eBook_ANOVA/)"),
"v4" = c("[![vol 4](images/common/EQM_v4_button_tall.png)](https://cehs-research.github.io/eBook_regression/)"),
"v5" = c("[![vol 5](images/common/EQM_v5_button_tall.png)](https://cehs-research.github.io/eBook_multilevel/)"),
"v6" = c("[![vol 6](images/common/EQM_v6_button_tall.png)](https://cehs-research.github.io/eBook_SEM/)"),
"v7" = c("[![vol 7](images/common/EQM_v7_button_tall.png)](https://cehs-research.github.io/eBook_misc/)")) %>% kableExtra::kable(align = "c")
data.frame("v0" = c("[![vol 0](images/common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)"),
"v1" = c("[![vol 1](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_wrangle/)"),
"v2" = c("[![vol 2](images/common/EQM_v2_button_tall.png)](https://cehs-research.github.io/eBook_exploree/)"),
"v3" = c("[![vol 3](images/common/EQM_v3_button_tall.png)](https://cehs-research.github.io/eBook_ANOVA/)"),
"v4" = c("[![vol 4](images/common/EQM_v4_button_tall.png)](https://cehs-research.github.io/eBook_regression/)"),
"v5" = c("[![vol 5](images/common/EQM_v5_button_tall.png)](https://cehs-research.github.io/eBook_multilevel/)"),
"v6" = c("[![vol 6](images/common/EQM_v6_button_tall.png)](https://cehs-research.github.io/eBook_SEM/)"),
"v7" = c("[![vol 7](images/common/EQM_v7_button_tall.png)](https://cehs-research.github.io/eBook_misc/)")) %>% kableExtra::kable(col.names = c("0", "1", "2", "3", "4", "5", "6", "7"),
align = "c")
data.frame("v0" = c("[![vol 0](images/common/EQM_v0_button_tall.png "Setting Up Your Computer")](https://cehs-research.github.io/eBook_install/)"),
data.frame("v0" = c("[![vol 0](images/common/EQM_v0_button_tall.png)](https://cehs-research.github.io/eBook_install/)"),
"v1" = c("[![vol 1](images/common/EQM_v1_button_tall.png)](https://cehs-research.github.io/eBook_wrangle/)"),
"v2" = c("[![vol 2](images/common/EQM_v2_button_tall.png)](https://cehs-research.github.io/eBook_exploree/)"),
"v3" = c("[![vol 3](images/common/EQM_v3_button_tall.png)](https://cehs-research.github.io/eBook_ANOVA/)"),
"v4" = c("[![vol 4](images/common/EQM_v4_button_tall.png)](https://cehs-research.github.io/eBook_regression/)"),
"v5" = c("[![vol 5](images/common/EQM_v5_button_tall.png)](https://cehs-research.github.io/eBook_multilevel/)"),
"v6" = c("[![vol 6](images/common/EQM_v6_button_tall.png)](https://cehs-research.github.io/eBook_SEM/)"),
"v7" = c("[![vol 7](images/common/EQM_v7_button_tall.png)](https://cehs-research.github.io/eBook_misc/)")) %>% kableExtra::kable(col.names = c("0", "1", "2", "3", "4", "5", "6", "7"),
align = "c")
install.packages(c("tidyverse", "furniture", "pander", "stargazer", "texreg", "xtable", "kableExtra", "RColorBrewer", "gghighlight", "ggthemes", "ggfortify", "ggalt", "ggExtra", "GGally", "ggeffects", "corrplot", "gpairs", "gridextra", "likert", "vcd", "scales", "cowplot", "yarrr", "psych", "polycor", "corpcor", "sjlabelled", "sjPlot", "sjmisc", "sjstats", "Hmisc", "labelled", "afex", "emmeans", "corpcor", "multicomp", "multcompView", "car", "effects", "predictmean", "nlme", "lme4", "lmerTest", "HLMdiag", "geepack", "gee", "gee4", "optimx", "MuMIn", "lavaan", "OpenMx", "sem", "semPlot", "randomForest", "randomForestSRC", "ggRandomForests", "party", "partykit", "mgcv", "glmnet", "survival", "caret", "bookdown", "blogdown", "tidytex", "xaringan", "REDCapR", "redcapAPI", "devtools", "testthat", "roxygen2", "eRm", "ltm", "lsr", "heplots", "magrittr", "hexbin", "leaps", "mlmRev", "MuMIn", "ISwR"))