find.predatory: Checks if an issn, name of journal or publisher is registered...

Description Usage Arguments Value Warning Examples

View source: R/find_predatory.R

Description

This function takes as input a name or issn and looks for a match in a database of predatory journals from Beall's list (https://scholarlyoa.com/). The function can find a name or issn of a particular journal with perfect of partial match. A shiny app is also available (https://msperlin.shinyapps.io/shiny-predatory/).

Usage

1
find.predatory(x, by = "name", type.match = "partial", quiet = F)

Arguments

x

A name or issn for full or partial matching. For the later, the format is XXXX-XXXX. The input is insensitive to capslock.

by

Defines whether to look for x in the names or issn of journals (possible values = c('name','issn'))

type.match

Defines if the function will perform a full or partial match lookup (possible values = c('full','partial'))

quiet

Logical, defines whether to print results to screen or not

Value

A dataframe with the matched issn or name

Warning

While the database for standalone journals is up to date, the information about predatory publishers is not yet complete since it requires an extensive manual work. The missing data will be regularly included in the upcoming versions of the package. Last update: 2016-12-09.

Examples

1
2
3
4
my.name <- 'finance'

out <- find.predatory(my.name)
print(out)

predatory documentation built on Nov. 17, 2017, 4:21 a.m.