forked from code-check-club/code-check-club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
50 lines (39 loc) · 1.05 KB
/
index.qmd
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
---
title: "Code Check Club"
format:
html:
toc: true
code-link: true
code-fold: true
code-line-numbers: true
code-overflow: wrap
code-copy: true
---
<img src="images/code-check-club.png" style="width:300px; max-width:33%; float:right;">
```{r setup, include = FALSE}
# default knitr options
knitr::opts_chunk$set(
echo = FALSE,
warning = FALSE,
message = FALSE,
digits = 3
)
```
This document will record our pilot of a code check club. The first step is to identify some possible code to be checked. Ideally for the first few, this will be:
- in a language most of the members know
- straightforward analyses
- not too long
- the coder or a person very familiar with the code will attend
## Examples
```{r, results='asis'}
readLines("examples/DeBruine_2002/README.md") |>
gsub(pattern = "^#", replacement = "###") |>
paste(collapse = "\n") |>
cat()
```
```{r, results='asis'}
readLines("examples/Docherty_2020/README.md") |>
gsub(pattern = "^#", replacement = "###") |>
paste(collapse = "\n") |>
cat()
```