citations function

Citation frequency distribution

Citation frequency distribution

It calculates frequency distribution of citations.

citations(M, field = "article", sep = ";")

Arguments

  • M: is a bibliographic data frame obtained by the converting function convert2df. It is a data matrix with cases corresponding to manuscripts and variables to Field Tag in the original SCOPUS and Clarivate Analytics Web of Science file.
  • field: is a character. It can be "article" or "author" to obtain frequency distribution of cited citations or cited authors (only first authors for WoS database) respectively. The default is field = "article".
  • sep: is the field separator character. This character separates citations in each string of CR column of the bibliographic data frame. The default is sep = ";".

Returns

an object of class "list" containing the following components:

Citedthe most frequent cited manuscripts or authors
Yearthe publication year (only for cited article analysis)
Sourcethe journal (only for cited article analysis)

Examples

## EXAMPLE 1: Cited articles data(scientometrics,package = "bibliometrixData") CR <- citations(scientometrics, field = "article", sep = ";") CR$Cited[1:10] CR$Year[1:10] CR$Source[1:10] ## EXAMPLE 2: Cited first authors data(scientometrics) CR <- citations(scientometrics, field = "author", sep = ";") CR$Cited[1:10]

See Also

biblioAnalysis function for bibliometric analysis.

summary to obtain a summary of the results.

plot to draw some useful plots of the results.