article_info | R Documentation |
This function extracts key editorial information from one or more paper URLs. Specifically, it retrieves the submission, revision, and acceptance dates, as well as the article type. The function also calculates the turnaround time (the duration from submission to acceptance) and identifies whether the paper is part of a special issue.
article_info(vector, sleep = 2, sample_size, show_progress = TRUE)
vector |
A vector with urls. |
sleep |
Number of seconds between scraping iterations. 2 sec. by default |
sample_size |
A number. How many papers do you want to explore from the main vector. Leave blank for all |
show_progress |
Logical. If |
A data frame (class: data.frame
) with the following columns:
The URL of the article from which the information is retrieved.
The classification of the article (e.g., editorial, review).
The date the article was received by the publisher.
The date the article was accepted for publication.
The turnaround time, calculated as the number of days between the received and accepted dates.
The year in which the article was accepted for publication.
Indicates whether the article is part of a special issue.
url<-c("https://www.mdpi.com/2073-4336/8/4/45","https://www.mdpi.com/2073-4336/11/3/39")
info<-article_info(url, 1.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.