-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
40 lines (25 loc) · 1005 Bytes
/
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
metadata <- rmarkdown::yaml_front_matter("paper.Rmd")
```
# `r metadata$title`
This repo contains the materials to fully reproduce the paper titled "`r metadata$title`" by `r knitr::combine_words(purrr::map_chr(metadata$author, ~.x$name))`.
## Citation
Please cite the paper as:
Li et al. (2023) `r metadata$title`. arXiv preprint. URL: http://arxiv.org/abs/2308.05964
## Reproducibility
The main paper is written using R Markdown and contained in "paper.Rmd". To render this, you need to install all relevant packages. Two custom packages are:
```{r, eval = FALSE}
# OOP supports needed by `visage`
remotes::install_github("TengMCing/bandicoot")
#
# Visual inference models and p-value calculation
remotes::install_url("https://github.com/TengMCing/visage/raw/master/built/visage_0.1.0.tar.gz")
```