-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
66 lines (47 loc) · 1.44 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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
library(rdev)
library(fs)
library(dplyr)
library(purrr)
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# rtraining
<!-- badges: start -->
[![R-CMD-check](https://github.com/jabenninghoff/rtraining/workflows/R-CMD-check/badge.svg)](https://github.com/jabenninghoff/rtraining/actions)
[![lint](https://github.com/jabenninghoff/rtraining/workflows/lint/badge.svg)](https://github.com/jabenninghoff/rtraining/actions)
<!-- badges: end -->
## Overview
**`r desc::desc_get_field("Title")`:** `r desc::desc_get_field("Description")`
Feel free to use and/or fork this project!
## Notebooks
Notebooks in this package:
```{r notebooks, echo = FALSE, results = 'asis'}
notebooks <- dir_ls("analysis", regexp = "[.][Rq]md$") |>
map_dfr(rmd_metadata) |>
mutate(bullet = paste0("- [", title, "](", url, ") (", date, "): ", description)) |>
pull(bullet)
writeLines(notebooks)
```
## Installation
You can install the development version of rtraining from [GitHub](https://github.com/) with:
``` r
# install.packages("remotes")
remotes::install_github("jabenninghoff/rtraining")
```
Or using renv:
``` r
# install.packages("renv")
renv::install("jabenninghoff/rtraining")
```
## Development
- Changelog: See "Changelog" or `NEWS.md`.
- Planned: [TODO](TODO.md)