-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaltmetric-analysis.R
52 lines (37 loc) · 1.55 KB
/
altmetric-analysis.R
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
46
47
48
49
50
51
52
################################################################################
library(tidyverse)
library(readxl)
source("local-functions.R")
################################################################################
#test_url <- "https://api.altmetric.com/v1/doi/10.1038/480426a"
#test_doi <- "10.1038/480426a"
#fetch_altmetric_data(test_doi) %>% glimpse()
################################################################################
## Read in article list
article_df <-
readxl::read_xlsx("sample-articles.xlsx",
sheet = "Article List")
## Define the DOIs
doi_list <- article_df$DOI
################################################################################
## Fetch Altmetric data for each DOI and extract mentions
altmetric_results_list <-
map(doi_list, fetch_altmetric_data)
altmetric_results_df <-
do.call(bind_rows, altmetric_results_list) %>%
group_by(pick(-authors)) %>%
summarize(authors = paste(authors, collapse = ", "),
.groups = 'drop') %>%
select(doi, title, authors, everything()) %>%
arrange(desc(score), doi) %>%
mutate(across(score:included_in_citeulike, ~ coalesce(., 0)))
#View(altmetric_results_df)
################################################################################
merged_results_df <-
article_df %>%
left_join(select(altmetric_results_df, -title, -authors, -journal),
by = c("DOI" = "doi")
)
#View(merged_results_df)
################################################################################
write_csv(merged_results_df, "altmetric-results.csv")