Skip to content

Commit 40ff9c2

Browse files
committed
Added authors and acknowledgements to pdf
1 parent 3c4d5d4 commit 40ff9c2

File tree

5 files changed

+35
-4
lines changed

5 files changed

+35
-4
lines changed

acknowledgements.Rmd

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
11
# Acknowledgments {-}
22

3+
We'd like to thank everyone that has contributed to the development of
4+
[*Data Science: A First Introduction*](https://ubc-dsci.github.io/introduction-to-datascience/).
5+
This is an open source textbook that began as a collection of course readings
6+
for a new introductory data science course
7+
at the University of British Columbia (UBC), DSCI 100.
8+
Several faculty members in the UBC Department of Statistics
9+
were pivotal in shaping the direction of that course,
10+
and as such contributed greatly to the shape and direction of this book.
11+
We would especially like to thank Matías Salibían-Barrera
12+
for his great mentoring during the roll out of this course
13+
and book in the early days.
14+
His door was always open to chat about how to best introduce
15+
and teach data science our first year students.
16+
17+
Much acknowledgements
18+
and thanks to shaping this book goes to the DSCI 100 students.
19+
Their enthusiasm to learn data science sustained us during the hard work
20+
of creating a new course and writing a textbook.
21+
Their patience when they uncovered bugs in the book was much needed.
22+
Their feedback on the book and the course,
23+
really has contributed to making the book what it is today.

build_pdf.sh

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

33
# Copy files
44
cp references.bib pdf/
5+
cp authors.Rmd pdf/
56
cp preface-text.Rmd pdf/
7+
cp acknowledgements.Rmd pdf/
68
cp intro.Rmd pdf/
79
cp reading.Rmd pdf/
810
cp wrangling.Rmd pdf/
@@ -26,7 +28,9 @@ docker run --rm -m 5g -v $(pwd):/home/rstudio/introduction-to-datascience ubcdsc
2628

2729
# clean files in pdf dir
2830
rm -rf pdf/references.bib
29-
rm -rf pdf/preface-text.Rmd
31+
rm -rf pdf/authors.Rmd
32+
rm -rf pdf/preface-text.Rmd
33+
rm -rf pdf/acknowledgements.Rmd
3034
rm -rf pdf/intro.Rmd
3135
rm -rf pdf/reading.Rmd
3236
rm -rf pdf/wrangling.Rmd

index.Rmd

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,7 @@ output:
3535
---
3636

3737
```{r preface, child="preface-text.Rmd"}
38-
```
38+
```
39+
40+
```{r preface, child="acknowledgements.Rmd"}
41+
```

pdf/_bookdown.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ language:
88
ui:
99
edit: "Edit"
1010
chapter_name: "Chapter "
11-
#rmd_files: ["index.Rmd", "intro.Rmd", "setup.Rmd", "references.Rmd"]
12-
rmd_files: ["index.Rmd", "intro.Rmd", "reading.Rmd", "wrangling.Rmd", "viz.Rmd", "classification1.Rmd", "classification2.Rmd", "regression1.Rmd", "regression2.Rmd", "clustering.Rmd", "inference.Rmd", "jupyter.Rmd", "version-control.Rmd", "setup.Rmd", "references.Rmd"]
11+
#rmd_files: ["index.Rmd", "authors.Rmd", "intro.Rmd", "setup.Rmd", "references.Rmd"]
12+
rmd_files: ["index.Rmd", "authors.Rmd", "intro.Rmd", "reading.Rmd", "wrangling.Rmd", "viz.Rmd", "classification1.Rmd", "classification2.Rmd", "regression1.Rmd", "regression2.Rmd", "clustering.Rmd", "inference.Rmd", "jupyter.Rmd", "version-control.Rmd", "setup.Rmd", "references.Rmd"]

pdf/index.Rmd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ knitr::opts_chunk$set(fig.pos = "H",
3030

3131
```{r preface, child="preface-text.Rmd"}
3232
```
33+
34+
```{r preface, child="acknowledgements.Rmd"}
35+
```

0 commit comments

Comments
 (0)