-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthor_ego.R
37 lines (22 loc) · 849 Bytes
/
author_ego.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
#install.packages("dimensionsR")
library(dimensionsR)
library(tidyverse)
library(tictoc)
library(bib2df)
library(rscopus)
library(bibliometrix)
library(readxl)
#starts timer
tic()
#dimensions key
token <- dsAuth(key = "5D70B3712E044A41B40C922330029585")
#create list of weeds to search
#weed_list <- c("Cirsium vulgare", "Cuscuta campestris")
#creates the query string for dimensions
dimensions_query <- paste0("search publications in authors for \"C Buddenhagen\" return publications [type + basics + extras + authors + concepts + abstract]")
query_result <- dsApiRequest(token = token, query = dimensions_query, step = 200, limit = 50000, verbose=TRUE)
ds_temp <- dsApi2df(query_result)
results <- biblioAnalysis(ds_temp, sep = ";")
summary_stats<- summary(results)
#plot(x = results, k = 10, pause = FALSE)
toc()