r.index {RAT} | R Documentation |
R-index.
Description
Calculates the r-index (representativeness).
Usage
r.index(biblio, homeCountry = NULL, logbase = 2, plot = FALSE)
Arguments
biblio |
A data.frame exported from Web of Science as tab delimited text, full record OR a vector with country frequencies where names are the country names. |
homeCountry |
A character string specifying the country of origin of the researcher. Look at map$country for the complete list. If NULL, the country with most hits in Web of Science is used. |
logbase |
The log base for building the octaves. |
plot |
plots the expected and observed distribution of collaborations according to GDP. |
Details
The r-index (representativeness) is a measure of the overlap between observed and expected distributions of GDP per capita of collaborating countries (Cardoso et al. 2022). The abundance distribution of log(GDP per capita) of countries in the collaborators list is calculated (using octaves). This is compared with the global distribution of GDPs by using the overlap of both lists.
Value
The r-index value.
References
Cardoso, P., Fukushima, C.S. & Mammola, S. (2022) Quantifying the internationalization and representativeness in research. Trends in Ecology and Evolution, 37: 725-728.
Examples
data(biblio)
r.index(biblio)
r.index(biblio, plot = TRUE)
biblio = c(5, 3, 2, 1)
names(biblio) = c("Finland", "Portugal", "Brazil", "Italy")
r.index(biblio, plot = TRUE)