-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.Rmd
43 lines (31 loc) · 1.42 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
---
output:
github_document:
html_preview: false
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r results='asis', echo = FALSE, eval = TRUE}
d <- read.dcf("DESCRIPTION")
```
```{r results="asis", echo = FALSE, eval = TRUE}
title <- d[colnames(d) == "Title"]
cat(c("# ", paste(trimws(strsplit(title, "\n")[[1]]), collapse = " ")))
```
[![check](https://github.com/randy3k/arrangements/actions/workflows/check.yaml/badge.svg)](https://github.com/randy3k/arrangements/actions/workflows/check.yaml)
[![codecov](https://codecov.io/gh/randy3k/arrangements/branch/master/graph/badge.svg)](https://codecov.io/gh/randy3k/arrangements)
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/arrangements)](https://cran.r-project.org/package=arrangements)
[![](https://cranlogs.r-pkg.org/badges/grand-total/arrangements)](https://cran.r-project.org/package=arrangements)
Github: [https://github.com/randy3k/arrangements](https://github.com/randy3k/arrangements)
Documentation: [https://randy3k.github.io/arrangements](https://randy3k.github.io/arrangements)
```{r results="asis", echo = FALSE, eval = TRUE}
cat(d[colnames(d) == "Description"])
```
## Installation
You can install the released version of arrangements from [CRAN](https://CRAN.R-project.org) with:
```r
install.packages("arrangements")
```
Install the latest development version using
```r
devtools::install_github("randy3k/arrangements")
```