-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathREADME.Rmd
58 lines (49 loc) · 1.41 KB
/
README.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
49
50
51
52
53
54
55
56
---
title: "OPERA"
author: Pierre Gaillard, Yannig Goude
output:
github_document:
toc: true
toc_depth: 2
pandoc_args: --mathjax
header-includes:
<img src="man/figures/opera-logo.jpg" align="right" width="200">
---
<!-- badges: start -->
[](https://CRAN.R-project.org/package=opera)
[](https://CRAN.R-project.org/package=opera)
[](https://cranchecks.info/pkgs/opera)
[](https://codecov.io/github/Dralliag/opera?branch=master)
[](https://github.com/Dralliag/opera/actions)
<!-- badges: end -->
```{r echo=FALSE}
suppressWarnings({
suppressPackageStartupMessages({
library("knitr")
library(htmltools)
})
})
knitr::opts_chunk$set(
comment = "#>",
collapse = TRUE,
warning = FALSE,
message = FALSE,
fig.width = 6,
fig.height = 4,
fig.show='hold',
out.width="40%",
fig.path = "man/figures/",
fig.align = "center",
cache.path = "inst/cache/"
)
knitr::knit_hooks$set(imgcenter = function(before, options, envir){
if (before) {
HTML("<p align='center'>")
} else {
HTML("</p>")
}
})
readme <- TRUE
```
```{r child = "inst/rmd/example.Rmd"}
```