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

Using the Scopus API (rscopus package) to download all XMLs from a search

I used an advanced search on Scopus to narrow down articles to ones that fit a specific topic; 24,609 documents are returned from the search. I am hoping to download all of the articles as XMLs and then use the 'tm' R package for text-mining to…
millie0725
  • 359
  • 2
  • 12
0
votes
1 answer

Scopus API call to provide the list of institutions within an hierarchy

I am using the Scopus API to extract publications linked to institutions. The Scopus web interface provides two counts of papers for most institutions, "Documents Affiliation Only" and a larger number for "Documents Whole Institution". There is…
0
votes
1 answer

Using rscopus to retrieve non-aggregated Twitter data from an article in Scopus

Because of Twitter API constraints, I am attempting to scrape twitter data about a published article via the Scopus API using rscopus. Scopus integrates plumx data, which provides readers with social media metadata (twitter mentions, etc.) and also…
thc
  • 11
  • 1
0
votes
0 answers

How to make recursive promise calls?

I am working with an API that gives me data with a limit per request (here 25). Therefore, I have to recursively make promises with fetch. However, while most of my logic works, when I try to return from the function it will return an empty array.…
0
votes
1 answer

How to check if article exist in Scopus

Please I have dataset with some articles and I want to add column is_indexed for that I need to search if the article exist on Scopus "https://www.scopus.com/sources.uri" if someone have any idea about that I already try to test with ScopusSearch…
0
votes
3 answers

Using a proxy that requires authentication with pybliometrics

I am using pybliometrics, a Python interface to the Scopus API, to download the abstracts of some papers. Unfortunately Scopus only works inside the network of the university that subscribed to it. I am currently at home and whenever I try to…
robertspierre
  • 3,218
  • 2
  • 31
  • 46
0
votes
1 answer

401 AUTHORIZATION_ERROR

I've been using Scopus API for a few weeks and it was working perfectly without any problems. but suddenly it stopped working. I thought the quota had been exceeded but when I looked at the HTTP response I saw response code 401 and status of…
KooKoo
  • 451
  • 3
  • 20
0
votes
1 answer

Populate Mongo database with mongoose and API

So for a personal project, I am trying to make a database of conferences and their papers. to do this I am using Mongo DB community server, node.js, mongoose and the Elsevier Scopus API. So far I have made my own JSON file with all the relevant…
0
votes
1 answer

Scopus DOIs not working in article retrieval APIs

I’m trying to use the Elsapy module to extract the abstracts of documents on certain topics. I am able to do this but, unfortunately, only for a fraction of the documents found. For example, a particular search returns 16 documents but I am only…
0
votes
1 answer

error while search against the Scopus Search API and save the results in batches into a xml file

I'm trying to extract abstract from Scopus, using rscopus and with the functions that I got from https://github.com/christopherBelter/scopusAPI I have the API key using my university account, but when trying to save the data in xml, with: theXML <-…
0
votes
1 answer

Error while importing scopus data in bibliometrix

I have a list of 4023 elements that I exported from SCOPUS in the .CSV format. This list can be downloaded at the following address: link to download data When I try to import this dataset in in bibliometrix (with biblioshiny interface) i get the…
0
votes
1 answer

Refresh Power BI dataset connected to Scopus database

I prepared a scientometric dashboard using Power BI which is connected directly to Scopus database by calling API keys. On my Power Bi desktop it can refresh data without any error but after publishing the dashboard to power bi website it can not be…
Mahdi Hadi
  • 373
  • 4
  • 15
0
votes
1 answer

Multiple dois into the same query for scopus search

In scopus search it is possible to use the doi: DOI(103/4fu49) How is it possible to include multiple dois into the same query?
Elr Mant
  • 507
  • 1
  • 4
  • 14
0
votes
0 answers

Arguments imply differing number of rows for an iteration loop

code problem Save the result from an iteration loop into a whole dataframe problem library(rscopus) library(dplyr) auth_token_header("d2f02ad55dcfc907212f0e6b216bf847") akey="d2f02ad55dcfc907212f0e6b216bf847" set_api_key(akey) df = data.frame(doi…
Elr Mant
  • 507
  • 1
  • 4
  • 14
0
votes
1 answer

Execute a command and save the results into a df from a loop

I try to use scopus using the doi of the papers aiming to take the references of every paper: Step 1 load example data: library(rscopus) df = data.frame(doi = c("10.1109/TPAMI.2018.2798607", "10.1109/CNS.2017.8228696")) Step 2 iterate through the…
Elr Mant
  • 507
  • 1
  • 4
  • 14