-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
articles.Rmd
44 lines (27 loc) · 837 Bytes
/
articles.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
---
title: "List of Pathology Articles From Turkey"
---
```{r global_options}
knitr::opts_chunk$set(echo = TRUE,
eval = TRUE,
include = TRUE,
warning = FALSE,
message = FALSE,
cache = FALSE
)
```
```{r read articles_PMIDs, include=FALSE}
articles <- readr::read_csv(file = "data/articles.txt", col_names = TRUE)
tidyr::replace_na(articles, list(c("")))
articles_PMIDs <- articles$PMID
```
```{r articles rmd, include=FALSE}
out_articles = NULL
for (i in 1:length(articles_PMIDs)) {
value.articles_PMID <- articles_PMIDs[i]
out_articles = c(out_articles,
knitr::knit_expand('_articles_child.Rmd')
)
}
```
`r paste(knitr::knit(text = out_articles), collapse = '\n\n\n')`