-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.Rmd
48 lines (40 loc) · 1.09 KB
/
index.Rmd
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
---
title: "datadr"
subtitle: "Divide and Recombine in R"
author: Ryan Hafen
copyright: Ryan Hafen
output:
packagedocs:
toc: true
navpills: |
<li class="active"><a href='index.html'>Docs</a></li>
<li><a href='rd.html'>Package Ref</a></li>
<li><a href='https://github.com/delta-rho/datadr'>Github <i class='fa fa-github'></i></a></li>
brand: |-
<a href="http://deltarho.org">
<img src='figures/icon.png' alt='deltarho icon' width='30px' height='30px' style='margin-top: -3px;'>
</a>
---
```{r echo=FALSE, purl=FALSE}
knitr::opts_chunk$set(comment = NA)
set.seed(1234)
# function to create a link to the corresponding entry in Rd.html
rdl <- function(txt) {
txt2 <- gsub("\\.", "_", tolower(gsub("\\(\\)", "", txt)))
paste0("<code><a target='_blank' href='rd.html#", txt2, "'>", txt,"</a></code>")
}
```
```{r in-1, child='docs/1intro.Rmd'}
```
```{r in-2, child='docs/2data.Rmd'}
```
```{r in-3, child='docs/3dnr.Rmd'}
```
```{r in-4, child='docs/4mr.Rmd'}
```
```{r in-5, child='docs/5divag.Rmd'}
```
```{r in-6, child='docs/6backend.Rmd'}
```
```{r in-7, child='docs/7faq.Rmd'}
```