Questions tagged [scopus]

Scopus is the largest abstract and citation database of peer-reviewed literature: scientific journals, books and conference proceedings.

Scopus is the largest abstract and citation database of peer-reviewed literature: scientific journals, books and conference proceedings.

http://www.elsevier.com/online-tools/scopus

94 questions
0
votes
0 answers

Why the references are not downloaded from scopus to be shown in Biblioshiny?

When I try to do any analysis that deals with references of the metadata that I downloaded from Scopus, I get all sorts of errors. My colleagues experienced the same thing. I saw that there is no references that was downloaded in the first place…
Arbo94
  • 95
  • 8
0
votes
0 answers

How can I solve the Scopus API limitation issue using rscopus?

I am trying to analyze the article bibliography using Scopus API. When I run scopus_search(), I seem to run into an error due to 5,000 limit API, so I change the start and max_count argument but it is not working. rt_query <- scopus_search(query =…
0
votes
0 answers

Retrieve only the main content of academic articles using rscopus package

I would like to retrieve the main content only of academic articles using the rscopus package. However, following the codes below, I will get messy information (like headers, table of contents, table of figures) before the main part of papers start.…
Bianca Z
  • 1
  • 1
0
votes
1 answer

Is it possible to search Scopus API between certain coverDates?

I'm trying to create an application that lists research article entries from Scopus between two set dates (and does things with them - irrelevant for the current question). As I understand it, there is a "date" param that can be added to the search…
0
votes
0 answers

scopus API KEY query (affiliation and year) in R

How can I make a scopus API KEY query requesting data given an affiliation and a given year, example: imagine I want all the papers Scopus has by researchers affiliated to Google on the year 2003. I have the following code in R (but it is not…
0
votes
1 answer

Data set with rscopus

I'm new to rscopus, and am trying to find the number of publications by year for a list of authors, for whom I have extracted the author ids. However, I am not able to get this in a data frame format as intended. I am using the following…
Anisha Garg
  • 53
  • 5
  • 10
0
votes
1 answer

rscopus package on R in MacBook - Invalid API key error

I am trying to use the Scopus API for the first time. I have the API key and the institution token. However, I am still getting an error, when I try to use it in R on my Mac. Here is my…
Anisha Garg
  • 53
  • 5
  • 10
0
votes
0 answers

How to specifically chose a area in SUBJAREA Scopus classification?

SUBJAREA(COMP) in Scopus includes the following sub classification under it: -Computer Science(all) -Computer Science(miscellaneous) -Artificial Intelligence -Computational Theory and Mathematics -Computer Graphics and Computer -Aided…
0
votes
0 answers

python - how to make scopus API search for keywords only in abstracts

I'm using the Python interface to access Scopus resources (link), using the following code: from elsapy.elsclient import ElsClient from elsapy.elssearch import ElsSearch import json ## Load configuration con_file = open("config.json") config =…
NBK
  • 887
  • 9
  • 20
0
votes
1 answer

How to resolve time out issue in rscopus?

I'm new to using APIs so bear with me! I am trying to scrape journal articles from Scopus using the package "rscopus" in R (session info below). I have a working API and institutional key but when I run my query, it gets to about 50% completion…
AWorms
  • 23
  • 3
0
votes
1 answer

Connect and retrieve data from SCOPUS database to Power BI Desktop

I am working with SCOPUS data via API to a Power BI Desktop to retrieve a search of a list of author IDs, but just 25 papers (the first page) out of more than 800 documents were retrieved in the Desktop. This is the link of SCOPUS API.
0
votes
0 answers

Python: Scopus Author Citations

I want to extract the citations an other has received from Scopus. If you use the Scopus webpage you can access a citation overview for each author and select specific citations for specific years. For example <2016, <2019, etc. Is it possible to…
0
votes
0 answers

Python to download pdf full papers from sciencedirect or scopus via api

I am trying to batch-load papers from scopus (sciencedirect) via api. The code below works for doi1, successfully 1st page only (maybe the paper is not open-access). I tried many other doi, like doi2, but always error 404 (not found). I tried using…
nphaibk
  • 71
  • 7
0
votes
1 answer

How do I skip titles that contains too many search results (or take too long to retrieve the info from Scopus)?

I would like to access the ScopusSearch API and obtain the EIDs of a list of 1400 article titles that are saved in an excel spreadsheet. I tried to retrieve the EIDs via the following code: import numpy as np import pandas as pd from…
Apples
  • 29
  • 5
0
votes
2 answers

Scopus: Unable to Communicate With the API

import requests params = { 'apiKey': 'hidden', 'author_id': '36573126000' } def main(): r = requests.get('https://api.elsevier.com/content/author', params=params) print(r.text) main() I'm unable to communicate with the API, as…