net2Pajek {bibliometrix} | R Documentation |
Save a network graph object as Pajek files
Description
The function net2Pajek
save a bibliographic network previously created by networkPlot
as pajek files.
Usage
net2Pajek(net, filename = "my_pajek_network", path = NULL)
Arguments
net |
is a network graph object returned by the function |
filename |
is a character. It indicates the filename for Pajek export files. |
path |
is a character. It indicates the path where the files will be saved. When path="NULL, the files will be saved in the current folder. Default is NULL. |
Value
The function returns no object but will save three Pajek files in the folder given in the "path" argument with the name "filename.clu," "filename.vec," and "filename.net."
See Also
net2VOSviewer
to export and plot the network with VOSviewer software.
Examples
## Not run:
data(management, package = "bibliometrixData")
NetMatrix <- biblioNetwork(management, analysis = "co-occurrences",
network = "keywords", sep = ";")
net <- networkPlot(NetMatrix, n = 30, type = "auto", Title = "Co-occurrence Network",labelsize=1)
net2Pajek(net, filename="pajekfiles", path=NULL)
## End(Not run)
[Package bibliometrix version 4.3.0 Index]