-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path_bookdown.yml
executable file
·92 lines (70 loc) · 1.57 KB
/
_bookdown.yml
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
bibliography: ["bibliography.bib"]
citation_package: biblatex
biblio-style: "apa6"
link-citations: true
# cover-image: "media/keepcalm.png"
book_filename: "Just enough R"
new_session: yes
before_chapter_script: set_chunk_options.R
output_dir: "docs"
delete_merged_file: true
rmd_files:
[
# GETTING STARTED
"index.Rmd",
"start_here.Rmd",
"packages.Rmd",
# PART DATA
"DATASETS.Rmd",
"working-with-dataframes.Rmd",
"real-data.Rmd",
"import-export.Rmd",
"column-types-and-missing.Rmd",
"tidy-data.Rmd",
"reshaping.Rmd",
"summarising-data.Rmd",
"fancy-reshaping.Rmd",
"graphics.Rmd",
"graphics-ggplot-extras.Rmd",
# "example.datasets.Rmd",
# PART MODELS
"MODELS.Rmd",
"basic-statistics.Rmd",
"non-parametrics.Rmd",
"crosstabulation.Rmd",
"correlations.Rmd",
"t-tests.Rmd",
"linear-models.Rmd",
"anova.Rmd",
"generalized-linear-models.Rmd",
"multilevel-models.Rmd",
"mediation-and-covariance-models.Rmd",
"cfa-sem.Rmd",
# "additional-stubs.Rmd",
"bayes-mcmc.Rmd",
"power-analysis.Rmd",
# PART Patterns
"PATTERNS.Rmd",
"interactions.Rmd",
"predictions-and-margins.Rmd",
"models-are-data.Rmd",
"simplifying-and-reusing.Rmd",
"making-table-1.Rmd",
"quirks.Rmd",
"string-handling.Rmd",
"colours.Rmd",
"help.Rmd",
# PART explanations
"EXPLANATIONS.Rmd",
"confidence-and-intervals.Rmd",
"multiple-comparisons.Rmd",
"clustering.Rmd",
"fixed-or-random.Rmd",
"scaling-predictors.Rmd",
"link-functions.Rmd",
"over-fitting.Rmd",
# "sharing-and-publishing.Rmd",
# "writing-a-paper.Rmd",
# "cleaning-up-your-mess.Rmd",
"references.Rmd"
]