-
Notifications
You must be signed in to change notification settings - Fork 4
/
viewer.Rmd
executable file
·43 lines (37 loc) · 1.15 KB
/
viewer.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
---
title: "trelliscope"
subtitle: "Viewer Guide"
author: DeltaRho team
copyright: DeltaRho team
output:
packagedocs:
toc: true
navpills: |
<li><a href='index.html'>Docs</a></li>
<li class="active"><a href='viewer.html'>Viewer Docs</a></li>
<li><a href='rd.html'>Package Ref</a></li>
<li><a href='https://github.com/delta-rho/trelliscope'>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='viewer-docs/1intro.Rmd'}
```
```{r in-2, child='viewer-docs/2start.Rmd'}
```
```{r in-3, child='viewer-docs/3displayinfo.Rmd'}
```
```{r in-4, child='viewer-docs/4viewoptions.Rmd'}
```
```{r in-5, child='viewer-docs/5cognostics.Rmd'}
```