forked from noaa-iea/r3-train
-
Notifications
You must be signed in to change notification settings - Fork 0
/
roster.Rmd
29 lines (24 loc) · 832 Bytes
/
roster.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
---
title: "Roster"
pagetitle: "Roster | R3"
output:
html_document:
toc: false
toc_float: false
code_folding: "hide"
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = T, warning = F, message = F)
```
To add yourself to this roster, please complete up to Lesson [1.8 Contribute website with fork & pull request](https://noaa-iea.github.io/r3-train/collaborate.html#18_Contribute_website_with_fork__pull_request).
```{r}
librarian::shelf(
dplyr, DT, glue, readr)
read_csv("data/roster.csv") %>%
arrange(github_username) %>%
mutate(
user = glue("<a href='https://github.com/{github_username}'>@{github_username}</a>"),
exercises = glue("<a href='{exercises_website}'>{basename(exercises_website)}</a>")) %>%
select(user, name = full_name, exercises) %>%
datatable(escape=F)
```