Skip to content

Commit 4679943

Browse files
committed
rm wordcloud2
1 parent 7e868d9 commit 4679943

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

index.qmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ listing:
55
sort: "date desc"
66
type: grid
77
categories: cloud
8+
89
---

setup-environment.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
install.packages(c("rmarkdown", "tidyverse", "DT", "slickR", "RCurl", "openalexR",
2-
"leaflet", "fontawesome", "hrbrthemes", "ggalt", "ggbeeswarm", "wordcloud2",
3-
"curl"))
2+
"leaflet", "fontawesome", "hrbrthemes", "ggalt", "ggbeeswarm"))
43

subsite/publications.qmd

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,31 @@ pub_mod %>%
3333
DT::datatable(escape = F)
3434
3535
```
36+
37+
38+
39+
<!-- ```{r, echo=FALSE, message=FALSE} -->
40+
41+
<!-- library(wordcloud2) -->
42+
43+
<!-- concept_cloud <- pub_mod %>% -->
44+
<!-- select(inst_id = id, concepts) %>% -->
45+
<!-- tidyr::unnest(concepts) %>% -->
46+
<!-- select(display_name, level, score) %>% -->
47+
<!-- filter(score >= 0.65) %>% -->
48+
<!-- group_by(display_name) %>% -->
49+
<!-- summarise(count_no = n(), -->
50+
<!-- score = median(score)) -->
51+
52+
<!-- # concept_cloud <- pub_mod %>% -->
53+
<!-- # select(inst_id = id, topics) %>% -->
54+
<!-- # tidyr::unnest(topics) %>% -->
55+
<!-- # select(display_name, i, score) %>% -->
56+
<!-- # # filter(score >= 0.65) %>% -->
57+
<!-- # group_by(display_name) %>% -->
58+
<!-- # summarise(count_no = n(), -->
59+
<!-- # score = median(score)) -->
60+
61+
<!-- wordcloud2::wordcloud2(concept_cloud %>% filter(count_no > 2), size = 2.5, color = "random-light") -->
62+
63+
<!-- ``` -->

0 commit comments

Comments
 (0)