Learn R Programming

bibliometrix (version 4.3.0)

histNetwork: Historical co-citation network

Description

histNetwork creates a historical citation network from a bibliographic data frame.

Usage

histNetwork(M, min.citations, sep = ";", network = TRUE, verbose = TRUE)

Value

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

NetMatrixthe historical co-citation network matrix
histDatathe set of n most cited references
Mthe bibliographic data frame

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, OpenAlex, Lens.org and Clarivate Analytics Web of Science file.

min.citations

DEPRECATED. New algorithm does not use this parameters. It will be remove in the next version of bibliometrix.

sep

is the field separator character. This character separates strings in CR column of the data frame. The default is sep = ";".

network

is logical. If TRUE, function calculates and returns also the direct citation network. If FALSE, the function returns only the local citation table.

verbose

is logical. If TRUE, results are printed on screen.

See Also

convert2df to import and convert a supported export file in a bibliographic data frame.

summary to obtain a summary of the results.

plot to draw some useful plots of the results.

biblioNetwork to compute a bibliographic network.

Examples

Run this code

if (FALSE) {
data(management, package = "bibliometrixData")

histResults <- histNetwork(management, sep = ";")
}

Run the code above in your browser using DataLab