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
1
vote
1 answer

Scopus Abstract Retrieval - Value and Type Error only when too many entries are parsed

I am trying to retrieve abstracts via Scopus Abstract Retrieval. I have a file with 3590 EIDs. import pandas as pd import numpy as np file = pd.read_excel(r'C:\Users\Amanda\Desktop\Superset.xlsx', sheet_name='Sheet1') from pybliometrics.scopus…
Apples
  • 29
  • 5
1
vote
1 answer

Retrieve number of citations of a scientific paper in a given year

How can I retrieve the number of citations of a paper in a given year? I had a look at Scopus Citation Overview API but the pybliometrics documentation says the API key needs to be approved by Elsevier for this purpose, and in fact it is returning…
1
vote
0 answers

Identifying most cited researchers in Scopus for specific discipline and country

I am planning to conduct a qualitative research study focusing on the 20 most cited Italian cardiovascular researchers in Scopus. I have explored the dedicated search tools but cannot find any suitable means. Is there a way (automated or via SQL, R,…
1
vote
2 answers

401 error message by retrieving author information from Scopus API

I am trying to use your Scopus API to retrieve the publications that a certain author has, but I am facing a 401 error message in the browser console: GET…
user3631926
  • 162
  • 1
  • 12
1
vote
1 answer

Scopus API and Sustainable Development Goals search

I'm trying to automate a Scopus search using the API so we can more easily track publications related to the UN Sustainable Development Goals. However, I can't get the syntax right to  The search strings for each SDG are long and complex. The search…
1
vote
1 answer

All science journal classification (code and name) from pybliometrics, how to retrieve this info from the API

I have a list of EIDs linked to Scopus authors ids, I’ve been trying to retrieve the all science journal classification(code and name) from each article but I cannot find in the pybliometrics documentation the way to do it. I would appreciate some…
JJ Moradel
  • 19
  • 3
1
vote
2 answers

pybliometrics not recognizing Scopus API

I am trying to scrape data from Scopus using pybliometrics. I got the API key from Scopus, but I didn't fill in the web address, which made the key invalid/unauthorized. When I used it on my code, I got this error message: Scopus401Error: The…
Jay Son
  • 11
  • 2
1
vote
2 answers

Use Scopus API to retrieve abstracts of particular author?

I am relatively new to python. I am trying to use the scopus api to create a csv file that includes the text from all of the abstracts of a particular author. Any guidance on where to look for sample code would be much appreciated! I can't find…
1
vote
1 answer

Requests from Scopus API is only writing the first page of the PDF

I am trying to download the full text PDF versions from the Elsevier API. I am able to download the whole paper in XML, JSON and plain text form. So, the API key is working fine. However, I am not able to download the full text in PDF form. When I…
ozshikh
  • 11
  • 2
1
vote
1 answer

How to retrieve journals list for a particular subject classification category using Scopus Serial Title API?

Scopus Serial API allows to retrieve titles for a particular classification category by a subj parameter. For instance, when I specify subj=COMP&content=journal, I get all the journals in a category "Computer Science (all)", abbrev=COMP, code=1700.…
Daniel Langr
  • 22,196
  • 3
  • 50
  • 93
1
vote
1 answer

Execute command from a string

Using scopus in r to retrieve references library(rscopus) auth_token_header("please_add") akey="please_add" set_api_key(akey) x = abstract_retrieval("10.1109/TPAMI.2018.2798607", identifier= "doi") Executing this it is possible to take the…
Elr Mant
  • 507
  • 1
  • 4
  • 14
1
vote
2 answers

Scopus_ReadCSV {CITAN} not working with csv file exported from Scopus

I am using Rstudio with R 3.3.1 on Windows 7 and I have installed CITAN package. I am trying to import bibliography entries from a CSV file that I exported from Scopus (as it is, untouched), choosing to export all available information. This is the…
GeorgiosA
  • 31
  • 5
1
vote
2 answers

How do I modify the top XML node in R?

I would like to add an attribute to the very top node of an xml file and then save the file. I've tried every combination of xpath and subsetting I can think of, but just can't seem to make it work. To use a simple example: xml_string = c( '
Sarah Hailey
  • 494
  • 5
  • 19
1
vote
1 answer

R how to import a list with different number of columns to a data frame

I am trying to perform some scientometrics analysis from a Scopus csv file. The first column of the imported csv is like: Authors,Title,Year,Source title,Volume,Issue,Art. No.,Page start,Page end,Page count,Cited by,DOI,Link,Document…
HVerli
  • 13
  • 3
1
vote
1 answer

scopus keywords and citations crawling

I'm trying to crawling articles' data from Scopus api. I have api key and can receive fields from Standard view. Here is example: Firstly, initialization (api, searching query and headers) import json import requests api_resource =…
Mikhail
  • 395
  • 3
  • 17