Last chance! 50% off unlimited learning
Sale ends in
biblioNetwork
creates different bibliographic networks from a bibliographic data frame.
biblioNetwork(M, analysis = "coupling", network = "authors", sep = ";")
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.
is a character object. It indicates the type of analysis have to be performed.
analysis
argument can be "collaboration"
, "coupling"
, "co-occurrences"
or "co-citation"
.
Default is analysis = "coupling"
.
is a character object. It indicates the network typology. The network
aurgument can be
"authors"
, "references"
, "sources"
, "countries"
,"keywords"
, "author_keywords"
, "titles"
, or "abstracts"
.
Default is network = "authors"
.
is the field separator character. This character separates strings in each column of the data frame. The default is sep = ";"
.
It is a squared network matrix. It is an object of class dgMatrix
of the package Matrix
.
The function biblioNetwork
can create a collection of bibliographic networks following the approach proposed by Batagely and Cerinsek (2013).
Typical networks output of biblioNetwork
are:
#### Collaboration Networks ############
-- Authors collaboration (analysis = "collaboration", network = "authors")
-- University collaboration (analysis = "collaboration", network = universities")
-- Country collabortion (analysis = "collaboration", network = "countries")
#### Co-citation Networks ##############
-- Authors co-citation (analysis = "co-citation", network = "authors")
-- Reference co-citation (analysis = "co-citation", network = "references")
-- Source co-citation (analysis = "co-citation", network = "sources")
#### Coupling Networks ################
-- Manuscript coupling (analysis = "coupling", network = "references")
-- Authors coupling (analysis = "coupling", network = "authors")
-- Source coupling (analysis = "coupling", network = "sources")
-- Country coupling (analysis = "coupling", network = "countries")
#### Co-occurrences Networks ################
-- Authors co-occurrences (analysis = "co-occurrences", network = "authors")
-- Source co-occurrences (analysis = "co-occurrences", network = "sources")
-- Keyword co-occurrences (analysis = "co-occurrences", network = "keywords")
-- Author-Keyword co-occurrences (analysis = "co-occurrences", network = "author_keywords")
-- Title content co-occurrences (analysis = "co-occurrences", network = "titles")
-- Abstract content co-occurrences (analysis = "co-occurrences", network = "abstracts")
convert2df
to import and convert a SCOPUS and Thomson
Reuters' ISI Web of Knowledge export file in a data frame.
cocMatrix
to compute a co-occurrence matrix.
biblioAnalysis
to perform a bibliometric analysis.
# NOT RUN {
# EXAMPLE 1: Authors collaboration network
data(scientometrics)
NetMatrix <- biblioNetwork(scientometrics, analysis = "collaboration",
network = "authors", sep = ";")
net <- networkPlot(NetMatrix, n = 30, type = "kamada", Title = "Collaboration",labelsize=0.5)
# EXAMPLE 2: Co-citation network
data(scientometrics)
NetMatrix <- biblioNetwork(scientometrics, analysis = "co-citation",
network = "references", sep = ";")
net <- networkPlot(NetMatrix, n = 30, type = "kamada", Title = "Co-Citation",labelsize=0.5)
# }
Run the code above in your browser using DataLab