-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscopus.Rmd
More file actions
47 lines (32 loc) · 984 Bytes
/
scopus.Rmd
File metadata and controls
47 lines (32 loc) · 984 Bytes
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
---
title: "Scopus"
author: "ABB"
date: "29 May 2019"
output: html_document
---
## Introduction
This is document which shows the summary information from Web of Science CORE Collection about systematic reviews. This document is built for the EQUATOR Network.
```{r setup, include=FALSE}
# install and load packages
library(devtools)
devtools::install_github("muschellij2/rscopus")
library(rscopus)
# set-up
knitr::opts_chunk$set(echo = TRUE)
chooseCRANmirror(graphics=FALSE, ind=1)
## rscopus::set_api_key("Your_API_key_here")
res <- author_df(last_name = "Muschelli", first_name = "John", verbose = FALSE, general = FALSE)
# names(res)
length(res)
have_api_key()
# rscopus::set_api_key("XXX")
# SCOPUS get
if (have_api_key()) {
res = scopus_search(query = "all(gene)", max_count = 20,
count = 10)
df = gen_entries_to_df(res$entries)
head(df$df)
}
```
##
Please contact Alexandra Bannach-Brown <mailto:alexandra_bannachbrown@bond.edu.au> if you have any questions.