forked from cambiotraining/r-intermediate
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmake_zip.R
27 lines (27 loc) · 850 Bytes
/
make_zip.R
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
files <- c(
"1.introduction.html",
"2.dplyr-intro-live-coding-script.Rmd",
"2.dplyr-intro-live-coding-script.html",
"2.dplyr-intro-exercises.Rmd",
"2.dplyr-intro-solutions.Rmd",
"2.dplyr-intro-solutions.html",
"3.workflows-exercises.Rmd",
"3.workflows-solutions.Rmd",
"3.workflows-solutions.html",
"4.summarise-and-combine-live-coding-script.Rmd",
"4.summarise-and-combine-live-coding-script.html",
"4.summarise-and-combine-exercises.Rmd",
"4.summarise-and-combine-solutions.Rmd",
"4.summarise-and-combine-solutions.html",
"ggplot2-live-coding-script.html",
"ggplot2-exercises.Rmd",
"ggplot2-exercises-with-images.html",
"ggplot2-exercises-with-solutions.nb.html",
"patient-data.txt",
"patient-data-cleaned.txt",
"clinical-data.txt",
"tidyr-example.txt",
"diabetes.txt",
"LICENSE.md"
)
zip(files, zipfile = "Course_Data.zip")