-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimc-rpkg-template.Rmd
More file actions
35 lines (27 loc) · 909 Bytes
/
vimc-rpkg-template.Rmd
File metadata and controls
35 lines (27 loc) · 909 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
29
30
31
32
33
34
35
---
title: "vimc-rpkg-template"
output: rmarkdown::html_vignette
# NOTE: make references if any available as a JSON at a location, see e.g. below
# NOTE: uncomment the line below, and update the references path as needed
# bibliography: resources/references.json
vignette: >
%\VignetteIndexEntry{vimc-rpkg-template}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
```{r setup}
library(vimc.rpkg.template)
```
This is a special vignette, which shares the same name as the package.
It will render as the "Get started" page in the navigation bar of _pkgdown_ websites.
To develop it further:
1. Rename the file to your package name;
2. Add code and explainers to help users get started with using your package in this vignette;
3. Remember to add and link references if needed.
## References