rr_journal_issn: Retrieve journal policy using ISSN

Description Usage Arguments Details Value Examples

View source: R/rr_journal_issn.R

Description

Retrieve policy information from the SHERPA/RoMEO API using the ISSN from the paper edition of the journal or the ISSN of the electronic version (e-ISSN or ESSN)

Usage

1
rr_journal_issn(issn, key = NULL)

Arguments

issn

[character(1+)]
one or a vector of journal(s) ISSN(s) or ESSN(s)

key

[character(1)]
a character string containing the API key or NULL (see Details section on how to specify it)

Details

There are several ways to provide your API key. The best way to know about them is to refer to the vignette about "Setting Up Your API key" accessible with the following command: vignette("setting_up_api_key", package = "rromeo"). You can also use rr_auth that will use the provided key to store it as an environmental variable.

Value

Returns a data.frame with the following columns:

Examples

1
2
3
4
5
6
7
8
# Query single ISSN
rr_journal_issn(issn = "1947-6264")

# Query multiple ISSN
rr_journal_issn(issn = c("1947-6264", "0030-1299"))

# Query by ESSN
rr_journal_issn("1463-9084")

rromeo documentation built on March 13, 2020, 9:08 a.m.