-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollaborators.Rmd
More file actions
35 lines (28 loc) · 898 Bytes
/
collaborators.Rmd
File metadata and controls
35 lines (28 loc) · 898 Bytes
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
---
title: "Collaborator directory"
output: html_document
---
```{r, include=FALSE}
library(googlesheets4)
library(knitr)
gs4_deauth()
coll = read_sheet("https://docs.google.com/spreadsheets/d/1UwM5VR_msyIEyCpIGllfaLD4K4mqKyU5LfsCTwYEvwo/edit?usp=sharing",
sheet='collaborator list')
coll = data.frame(coll)
```
```{r, echo=FALSE, out.width = "500px", fig.align='center'}
knitr::include_graphics("photos/HerbVar_Hahn_MT_PhotoMChiuffo.jpg")
```
```{r, echo=FALSE}
ctab = data.frame(
name = paste(coll$first.name, coll$last.name, sep=' '),
ins = coll$institution,
ap = coll$additional.participants
)
ctab$ap = as.character(ctab$ap)
ctab$ap[is.na(ctab$ap)] = ''
kable(ctab, col.names=c('Site PI', 'Institution', 'Additional Participants'), align=c('l','l','l'))
```
```{r, echo=FALSE, out.width = "500px", fig.align='center'}
knitr::include_graphics("photos/IMG_2382.jpg")
```