Learn R Programming

bibliometrix (version 1.4)

couplingSimilarity: Coupling similarity index

Description

It calculates a relative measure of bibliographic coupling.

Usage

couplingSimilarity(NetMatrix, type = "jaccard")

Arguments

NetMatrix
is a coupling matrix obtained by the network functions biblioNetwork or cocMatrix.
type
is a character. It can be "jaccard" or "salton" to obtain Jaccard or Salton similarity index respectively. The default is type = "jaccard".

Value

a similarity matrix.

Details

couplingSimilarity calculates Jaccard or Salton similarity from a coupling bibliographic matrix.

The Jaccard index (or Jaccard similarity coefficient) gives us a relative measure of the overlap of two sets. It is calcultated as the ratio between the intersection and the union of the reference lists (of two manuscripts). The Salton index, instead, relates the intersection of the two lists to the geometric mean of the size of both sets.

Both indices are equal to zero if the intersection of the reference lists is empty; its reach a maximum of one if both lists are identical.

See Also

biblioNetwork function to compute a bibliographic network.

cocMatrix to compute a bibliographic bipartite network.

Examples

Run this code

data(scientometrics)
NetMatrix <- biblioNetwork(scientometrics, analysis = "coupling", network = "references", sep = ";")
S=couplingSimilarity(NetMatrix, type = "jaccard")

Run the code above in your browser using DataLab