-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject-database.Rmd
47 lines (36 loc) · 1.89 KB
/
project-database.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
---
title: "Prototype of OLS-project database"
author:
name: "Angelica Maineri"
email: "[email protected]"
affiliation: "Erasmus University Rotterdam - ODISSEI"
date: '`r Sys.Date()`'
knit: (function(inputFile, encoding) {
rmarkdown::render(inputFile, encoding = encoding, output_file="./docs/index.html") })
output:
html_document:
theme: united
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, message = FALSE)
suppressWarnings(library(DT))
suppressWarnings(library(tidyverse))
```
Hello! Thank you for your interest in my project.
[Open Life Science - OLS](https://openlifesci.org/) is a mentorship programme to learn more about Open Science and Open Leadership, and mentees carry out individual or group projects. With over 200 projects, the list is now very rich yet also difficult to navigate. The aim of my project is to build a searchable database of OLS projects, for future, current and past OLS participants.
Thanks to my database, it will be possible to browse all projects from one page, filter them based on keywords and/or project members, and track the projects progress and outputs.
You can see a protype of the database below!
Contribution guidelines will follow soon. In the meantime, if you have ideas or comments, please open an issue or reach out to Angelica Maineri
_This project is carried out in the framework of OLS-7_
## Notes
The tagging of the domain is currently just a first attempt based on some keywords. SSH stands for Social Sciences and Humanities, LSH for Life Sciences and Health and NES for Natural and Engineering Sciences.
## Prototype
```{r loaddata}
df = read_csv("./Data-enrichment/Data/projects_domain_people.csv")
df = df |> select(-c("...1"))
DT::datatable(df, escape = FALSE,
filter = "top",
options = list(dom = "ft",
pageLength = 1000),
rownames = FALSE)
```