forked from rladies/awesome-rladies-blogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
46 lines (32 loc) · 1.12 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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
# Awesome R-Ladies' Blogs
<!-- badges: start -->
[![Awesome](https://awesome.re/badge.svg)](https://awesome.re)
<!-- badges: end -->
Curated list of awesome blogs by R-Ladies, inspired by this [Tweet](https://twitter.com/WeAreRLadies/status/1362021673239785473).
To contribute to the list, please see the [contributing](CONTRIBUTING.md) instructions
## List of blogs
Created by accessing the json files in [blogs/](blogs/)
```{r, echo = FALSE, results='asis'}
json_list <- list.files(here::here("blogs"), "json$", full.names = TRUE)
dt <- lapply(json_list, jsonlite::read_json)
invisible(
lapply(dt, function(x){
cat(sprintf(" - [%s](%s) by %s",
x$title, x$url,
paste(sapply(x$authors, function(x) x$name), collapse=", ")),
sep = "\n")
})
)
```
## License
[![CC0](https://upload.wikimedia.org/wikipedia/commons/6/69/CC0_button.svg)](https://creativecommons.org/publicdomain/zero/1.0/)