Skip to content

Commit 0f68dff

Browse files
committed
updated to latest version of bookdown and pandoc.
1 parent 4688326 commit 0f68dff

File tree

265 files changed

+1235
-2704
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

265 files changed

+1235
-2704
lines changed

_bookdown.yml

Lines changed: 2 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
new_session: yes
22
output_dir: "_book"
3-
delete_merged_file: false
3+
delete_merged_file: true
44

5-
#rmd_files_draft: [
65
rmd_files: [
76
"index.Rmd",
87

@@ -20,40 +19,6 @@ rmd_files: [
2019
"overlapping_points.Rmd", # completed
2120
"avoid_line_drawings.Rmd", # completed
2221

23-
# Part II
24-
"directory_of_visualizations.Rmd",
25-
##"visualizing_amounts.Rmd",
26-
"visualizing_proportions.Rmd", # completed
27-
"visualizing_distributions_I.Rmd", # completed
28-
"visualizing_distributions_II.Rmd", # completed
29-
"boxplots_violins.Rmd",
30-
31-
# Part III
32-
"image_file_formats.Rmd", # completed
33-
34-
"notes.Rmd",
35-
36-
"references.Rmd"
37-
]
38-
39-
rmd_files_final: [
40-
#rmd_files: [
41-
"index.Rmd",
42-
43-
"introduction.Rmd",
44-
45-
# Part I
46-
#"aesthetic_mapping.Rmd",
47-
#"color_basics.Rmd",
48-
"pitfalls_of_color_use.Rmd", # completed
49-
#"redundant_coding.Rmd",
50-
"small_axis_labels.Rmd", # completed
51-
##"aspect_ratio.Rmd",
52-
"background_grids.Rmd", # completed
53-
##"proportional_ink.Rmd",
54-
"overlapping_points.Rmd", # completed
55-
"avoid_line_drawings.Rmd", # completed
56-
5722
# Part II
5823
"directory_of_visualizations.Rmd",
5924
##"visualizing_amounts.Rmd",
@@ -65,7 +30,7 @@ rmd_files_final: [
6530
# Part III
6631
"image_file_formats.Rmd", # completed
6732

68-
#"notes.Rmd",
33+
"notes.Rmd",
6934

7035
"references.Rmd"
7136
]

_bookdown_final.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
new_session: no
2+
output_dir: "_book_final"
3+
delete_merged_file: true
4+
5+
rmd_files: [
6+
"index.Rmd",
7+
8+
"introduction.Rmd",
9+
10+
# Part I
11+
#"aesthetic_mapping.Rmd",
12+
"color_basics.Rmd",
13+
"pitfalls_of_color_use.Rmd", # completed
14+
#"redundant_coding.Rmd",
15+
"small_axis_labels.Rmd", # completed
16+
##"aspect_ratio.Rmd",
17+
"background_grids.Rmd", # completed
18+
##"proportional_ink.Rmd",
19+
"overlapping_points.Rmd", # completed
20+
"avoid_line_drawings.Rmd", # completed
21+
22+
# Part II
23+
"directory_of_visualizations.Rmd",
24+
##"visualizing_amounts.Rmd",
25+
"visualizing_proportions.Rmd", # completed
26+
"visualizing_distributions_I.Rmd", # completed
27+
"visualizing_distributions_II.Rmd", # completed
28+
"boxplots_violins.Rmd", # completed
29+
30+
# Part III
31+
"image_file_formats.Rmd", # completed
32+
33+
#"notes.Rmd",
34+
35+
"references.Rmd"
36+
]

_build_final.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
3+
rm -rf ./book_final/
4+
Rscript -e "bookdown::render_book(input = 'index.Rmd', output_format = 'bookdown::gitbook', config_file = '_bookdown_final.yml')"

_deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
rm -rf ./docs/
44
mkdir ./docs
5-
cp -r ./_book/* ./docs/
5+
cp -r ./_book_final/* ./docs/
66
git add ./docs/

aesthetic_mapping.Rmd

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@
33
source("_common.R")
44
```
55

6-
# (PART\*) Part I: General principles of figure design {-}
7-
86
# Visualizing data: mapping data onto aesthetics

background_grids.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Grid lines that run perpendicular to the key variable of interest tend to be the
103103
```
104104

105105

106-
Background grids along both axis directions can make sense, however, for scatter plots where there is no primary axis of interest. This presentation frequently looks best without axis lines. Figure \@ref(fig:iris-scatter) provides an example.
106+
Background grids along both axis directions can make sense, however, for scatter plots where there is no primary axis of interest. This presentation frequently looks best without axis lines. Figure \@ref(fig:Aus-athletes-grid) provides an example.
107107

108108
(ref:Aus-athletes-grid) Percent bodyfat versus height in professional male Australian athletes. (Each point represents one athlete.)
109109

0 commit comments

Comments
 (0)