Skip to content

Commit 1bffda6

Browse files
committed
addons
1 parent 996c2fb commit 1bffda6

File tree

3 files changed

+32
-5
lines changed

3 files changed

+32
-5
lines changed

_quarto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ website:
2222
- subsite/about.qmd
2323
- subsite/team.qmd
2424
- subsite/colab.qmd
25+
- subsite/erasmus.qmd
2526
- subsite/alumni.qmd
26-
# - subsite/retreats.qmd
2727
# - subsite/hobby.qmd
2828
# - subsite/fun.qmd
2929
- text: "Projects"

subsite/erasmus.qmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ We offer a collaborative and enriching environment for **you** at all stages of
1616

1717
- **Full support**: we assist with all necessary **administrative paperwork**, provide **guidance on Erasmus+ documentation**, and help you settle in quickly so you can focus on research.
1818

19-
## Our interns and students
19+
## Our interns and trainees
2020

2121
Each of our interns brings unique skills and perspectives that enrich our lab’s work and culture.
2222

@@ -28,7 +28,8 @@ Meet our international team members who are/were already making an impact in the
2828
[![Ronja Tittel](fig/ppl/rt.jpg "Ronja Tittel"){}]()
2929
:::
3030

31+
## How to apply
3132

3233
If you’re motivated to work in a collaborative, international environment and ready to expand your research experience, we’d love to hear from you! **Apply now to become a part of our team through Erasmus+ or other international internship programs.**
3334

34-
📧 For inquiries and application details, feel free to reach out to us at [BioGenies](mailto:[email protected]) or directly to BioGenies members!
35+
📧 If you have questions feel free to reach out to us at [BioGenies](mailto:[email protected]) or directly to BioGenies members!

subsite/publications.qmd

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ library(DT)
5454
pub <- openalexR::oa_fetch(entity ="works",
5555
author.id = c("A5015968787", "A5072021711"))
5656
57-
pub <- pub$author %>% lapply(., function(x) {x$au_display_name %>% str_flatten(., collapse = ", ")}) %>% unlist() %>% tibble(authors = .) %>% cbind(pub, .)
57+
pub_mod <- pub$author %>% lapply(., function(x) {x$au_display_name %>% str_flatten(., collapse = ", ")}) %>% unlist() %>% tibble(authors = .) %>% cbind(pub, .)
5858
59-
pub %>%
59+
pub_mod %>%
6060
filter(type != "dataset") %>%
6161
select(title, authors, doi, publication_date, type, so, host_organization) %>%
6262
drop_na(., doi) %>%
@@ -72,3 +72,29 @@ pub %>%
7272
7373
```
7474

75+
76+
```{r, echo=FALSE, message=FALSE}
77+
78+
library(wordcloud)
79+
80+
concept_cloud <- pub %>%
81+
select(inst_id = id, topics) %>%
82+
tidyr::unnest(topics) %>%
83+
filter(name == "field") %>%
84+
# select(display_name, count) |>
85+
group_by(display_name) %>%
86+
summarise(count_no = n())
87+
88+
pal <- c("black", scales::brewer_pal(palette = "Set1")(5))
89+
set.seed(2137)
90+
91+
wordcloud::wordcloud(
92+
concept_cloud$display_name,
93+
concept_cloud$count_no,
94+
scale = c(1, .3),
95+
colors = pal
96+
)
97+
98+
wordcloud2::wordcloud2(concept_cloud, size = 2.5, color = "random-light")
99+
100+
```

0 commit comments

Comments
 (0)