-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
77 lines (60 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
title: "README"
output:
md_document:
variant: markdown_github
params:
NVIpkg: "NVIpjsr"
pkg_path: !r usethis::proj_path()
first_copyright_year: "2024"
---
```{r, include = FALSE}
NVIpkg <- params$NVIpkg
NVIpkg_inline <- paste0("`", NVIpkg, "`")
pkg_path <- params$pkg_path
logo_path <- ""
if (file.exists(paste0("./man/figures/", NVIpkg, "_logo.png"))) {
logo_path <- paste0(' <img src="man/figures/', NVIpkg, '_logo.png" align="right" height="138" />')
}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
`r paste0(NVIpkg, ": ", desc::desc_get_field(key = "Title"), logo_path)`
================
<!-- README.md is generated from README.Rmd. Please edit that file -->
- [Overview](#overview)
- [Installation](#installation)
- [Usage](#usage)
- [Copyright and license](#copyright-and-license)
- [Contributing](#contributing)
## Overview
```{r, include = FALSE}
description <- desc::desc_get_field(key = "Description")
```
`r paste0(NVIpkg_inline,
"",
sub(substr(description,1,1), tolower(substr(description,1,1)), description))`
```{r child=system.file('templates', "README_NVIverse.Rmd", package = "NVIpackager")}
```
## Installation
```{r child=system.file('templates', "README_installation.Rmd", package = "NVIpackager")}
```
## Usage
```{r child=system.file('templates', "README_usage_attach.Rmd", package = "NVIpackager")}
```
`r paste(NVIpkg_inline,
sub(substr(description,1,1), tolower(substr(description,1,1)), description))`
```{r child=system.file('templates', "README_usage_help.Rmd", package = "NVIpackager")}
```
## Copyright and license
```{r child=system.file('templates', "README_copyright_and_license.Rmd", package = "NVIpackager")}
```
## Contributing
```{r child=system.file('templates', "README_contributing.Rmd", package = "NVIpackager")}
```
-----------------
<!-- Code of conduct -->
```{r child=system.file('templates', "README_code_of_conduct.Rmd", package = "NVIpackager")}
```