Learn R Programming

bibliometrix (version 1.8)

histNetwork: Historical co-citation network

Description

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

Usage

histNetwork(M, n = 10, 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 Thomson Reuters' ISI Web of Knowledge file.

n

is an integer, indicating the number of most cited references to select. Default value is 10.

sep

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

Value

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

NetMatrix the historical co-citation network matrix
Degree the min degree of the network
histData the set of n most cited references

See Also

convert2df to import and convert an ISI or SCOPUS 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
# NOT RUN {
data(scientometrics)

histResults <- histNetwork(scientometrics, n = 10, sep = ";")


# }

Run the code above in your browser using DataLab