forked from jwjw/learnR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacknowledgment.Rmd
More file actions
29 lines (23 loc) · 878 Bytes
/
acknowledgment.Rmd
File metadata and controls
29 lines (23 loc) · 878 Bytes
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
```{r knitsetup, echo=FALSE, results='hide', warning=FALSE, message=FALSE, cache=FALSE}
opts_knit$set(base.dir='./', fig.path='', out.format='md')
opts_chunk$set(prompt=TRUE, comment='', results='markup')
# See yihui.name/knitr/options for more Knitr options.
##### Put other setup R code here
library("rlist")
library("pipeR")
```
# Acknowledgment
This book is a collaborative work. I should give my thanks to the following contributors:
```{r, echo=FALSE, message=FALSE, results='asis'}
"https://api.github.com/repos/renkun-ken/learnR/contributors" %>>%
list.load("json") %>>%
list.exclude(login == "renkun-ken") %>>%
list.iter({
url %>>%
list.load("json") %>>%
with(sprintf("* [%s](%s)\n", name, html_url)) %>>%
cat
})
```
## Contribute to this book
The contents of this book is hosted on [GitHub](https://github.com/renkun-ken/learnR).