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
2 answers

rscopus scopus_search() only returns first author. Need full author list

I am performing a bibliometric analysis, and have chosen to use rscopus to automate my document searches. I performed a test search, and it worked; the documents returned by scopus_search() exactly matched a manual check that I performed. Here's my…
0
votes
1 answer

pybliometrics returning "Error translating query"

I was trying pybliometrics seems to be working at first but not the following code returns "Error translating query" from pybliometrics.scopus import ScopusSearch scopus_advanced_search = "TITLE-ABS-KEY(capacitance) AND LIMIT-TO(PUBYEAR ,…
0
votes
1 answer

Download h-index time series from Scopus or Orcid

Starting from the Scopus ID of a scientist, how can I retrieve the time series of his h-index? That is, how do I get the h-index as a function of time? I need to do that in an automatic way, in Python, using the Scopus API (or a wrapper like…
robertspierre
  • 3,218
  • 2
  • 31
  • 46
0
votes
2 answers

How to combine Scoups and WoS data for biblioshiny in R

I am tring to conduct a basic bibliometrix analysis using biblioshiny. However, since I have both Scopus and WoS databases, I am finding it difficult to combine them. So far, I have been able to import both the data using codes in R, and I have also…
0
votes
1 answer

API to update Scopus data

We have found that the indexed data in the Scopus database contains a lot of errors (missing articles, citations, wrong citations unlinked citations,...) and we have found only a manual way of sending requests for fixes (that is WEB form or Excell…
primozs
  • 1
  • 1
0
votes
1 answer

Requesting API informations in c#

I am trying to get information from the Scopus API ( made for python ), but i'm using C# mvc ( have to ). I am to the point that thats to the api Url : "https://api.elsevier.com/" and api key "3b...", i try to make a request this way : private…
0
votes
1 answer

Is it possible to pair the affiliation history with a year in which a researcher served in given institution, as it appears in the scopus website?

I used au.affiliation_history to get the affiliation history from a list of Authors ID.  It worked great but now I am trying to pair the affiliation history with the Year in which the researcher served in the institution that appear in the…
JJ Moradel
  • 19
  • 3
0
votes
1 answer

how to retrieve all authors for each Scopus record in a query

I have retrieved some records from Scopus using elsapy, using this search query: search_query = 'TITLE-ABS-KEY(teleworking) AND SUBJAREA(SOCI)' search_results = ElsSearch(search_query, 'scopus') All is good except that the retrieved records only…
user299791
  • 2,021
  • 3
  • 31
  • 57
0
votes
0 answers

Why my SCOPUS API search results does not matches with Elsevier search engine results using python?

I am facing an issue with my web scraping tool. I have made a fucntion in python to get articles details using SCOPUS search API available on Elsevier dev portal. However, after i run the program it gives me different result set as compare to…
0
votes
1 answer

Get a list of all author IDs for a given given university with pybliometrics

I am trying to get the complete list of author IDs associated with a given University. I tried to do it from the Scopus web page but my request exceeded the allowed quota. Any possible solution for this?
JJ Moradel
  • 19
  • 3
0
votes
1 answer

Get affiliation information from multiple authors in a loop

Currently working with pybliometrics (scopus) I want to create a loop that allows me to get affiliation information from multiple authors. Basically, this is the idea of my loop. How do I do that with many authors? from pybliometrics.scopus import…
JJ Moradel
  • 19
  • 3
0
votes
1 answer

pybliometrics - Is there a limit to the amount of records retrieved through get_coauthors()?

I am using the AuthorRetrieval class to get information from Scopus author records, including their co-authors. I have noticed that the get_coauthors() function only retrieves a maximum of 160 co-authors, even when there are many more…
0
votes
1 answer

Webscraping Scopus with lxml.html

I'm trying to webscrape Scopus with lxml.html (ultimately to create a list of document titles), but it seems no data is being stored from the page.content; the resulting list(tr_elements) ends up empty. import requests import lxml.html as lh url =…
0
votes
2 answers

Scopus - Science direct - Query with filter articlesTypes

I have been able to use API and it works well, I was able to query : https://api.elsevier.com/content/search/sciencedirect?query=multiple%20sclerosis&apiKey=XXXXXXX Anyway I’d like to add filters as I do on this query :…
Robin L
  • 11
  • 1
0
votes
1 answer

pybliometrics: How does the .get_coauthors() method affect the API quota?

I'm using the pybliometrics package to query the Scopus API in Python. Specifically, I'm using the AuthorRetrieval class to grab data about the author using an EID (name, affiliation, bibliometric info, etc.) and am also grabbing information about…