PWI2: Function to calculate prize winner indices based on...

View source: R/PWI2.R

PWI2R Documentation

Function to calculate prize winner indices based on bibliometric data

Description

This function calculates prize winner indices based on bibliometric data. The default prize winners are the recipients of the Derek de Solla Price Memorial Medal. Users can provide recipients of other prizes.

Usage

PWI2(
  bib_df,
  pw_pattern = "(BOYACK K)|(KLAVANS R)|(BORNMANN L)|(...",
  method = 1,
  verbosity = 1
)

Arguments

bib_df

bibliographic dataframe variable from convert2df

pw_pattern

character variable (optional parameter) that is passed as search pattern to the grep function to identify the prize winners in the data set

method

integer variable (optional parameter) that determines if only the authors in the dataset with number of papers and co-authors is returned or if the prize winner index is calculated 0: return only a list with authors, number of papers, and number of co-authorships 1: calculate the prize winner index and return it alongside with number of papers and number of co-authorships

verbosity

level of verbosity (0=quiet and 1=informative)

Details

PWI2(bib_df=bibliographic_dataframe, pw_pattern = '(BOYACK K)|(KLAVANS R)|(BORNMANN L)|(BAR-ILAN J)|(BARILAN J)| (WALTMAN L)|(THELWALL M)|(CRONIN B)|(PERSSON O)|(VINKLER P)|(MCCAIN K)|(INGWERSEN P)| (LEYDESDORFF L)|(ROUSSEAU R)|(EGGHE L)|(GLANZEL W)|(GLAENZEL W)|(MOED H)|(IRVINE J)| (MARTIN B)|(GRIFFITH B)|(VAN RAAN A)|(VANRAAN A)|(MERTON R)|(SCHUBERT A)|(BROOKES B)| (NARIN F)|(NALIMOV V)|(BRAUN T)|(MORAVCSIK M)|(GARFIELD E)', method=1, verbosity=1) Only the argument bib_df is necessary. All other arguments are optional.

Literature:

  • Bornmann, L. & Haunschild, R. (in preparation). "Prize Winner Index".

Value

data frame of researcher names, PWI value, number of papers, and number of co-authors

Examples


bib_df <- bibliometrix::convert2df('http://andreas-thor.github.io/cre/data/savedrecs_JOI2.txt')
JoI <- PWI2(bib_df)
head(JoI)


PWIR documentation built on Oct. 20, 2023, 5:06 p.m.

Related to PWI2 in PWIR...