Pajek: Functions for loading and writing Pajek files

Description Usage Arguments Value Author(s) References See Also

Description

Functions for reading/loading and writing Pajek files:

loadnetwork - Loads a Pajek ".net" filename as a matrix. For now, only simple one and two-mode networks are supported (eg. only single relations, no time information).

loadnetwork2 - The same as above, but adopted to be called withih loadpajek

loadnetwork3 - Another version for reading networks.

loadnetwork4 - Another version for reading networks.

savenetwork - Saves a matrix in to a Pajek ".net" filename.

loadmatrix - Loads a Pajek ".mat" filename as a matrix.

savematrix - Saves a matrix in to a Pajek ".mat" filename.

loadvector - Loads a Pajek ".clu" filename as a vector.

loadvector2 - The same as above, but adopted to be called withih loadpajek - as a consequence not suited for reading clusters

savevector - Saves a vector in to a Pajek ".clu" filename.

loadpajek - Loads a Pajek project filename (".paj") as a list with the following components: Networks, Partitions, Vectors and Clusters. Clusters and hierarchies are dissmised.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
loadnetwork(filename, useSparseMatrix = NULL, minN = 50)
loadnetwork2(filename, useSparseMatrix = NULL, minN = 50, safe =
                 TRUE, closeFile = TRUE)
loadnetwork3(filename, useSparseMatrix = NULL, minN = 50)
loadnetwork4(filename, useSparseMatrix = NULL, minN = 50, fill = FALSE)
savenetwork(n, filename, twomode = "default", symetric = NULL)
loadmatrix(filename)
savematrix(n, filename, twomode = 1)
loadvector(filename)
loadvector2(filename)
savevector(v, filename)
loadpajek(filename)

Arguments

filename

The name of the filename to be loaded or saved to or an open file object.

useSparseMatrix

Should a sparse matrix be use instead of the ordinary one? Sparse matices can only be used if package Matrix is installed. The default NULL uses sparsematrices for networks with more that minN vertices

minN

The minimal number of units in the network to use sparse matrices.

n

A matrix representing the network.

twomode

1 for one-mode networks and 2 for two-mode networks. Default sets the argument to 1 for square matrices and to 2 for others.

symetric

If true, only the lower part of the matrix is used and the values are interpreted as "Edges", not "Arcs".

v

A vector.

fill

If TRUE then in case the rows have unequal length, blank fields are added.

safe

If FALSE error will occur if not all vertices have labels. If TRUE reading works faster.

closeFile

Should the connection be closed at the end. Should be always TRUE if function is used directly.

Value

NULL, a matrix or a vector (see Description)

Author(s)

Vladimir Batagelj & Andrej Mrvar (most functions), Aleš Žiberna (loadnetwork, loadpajek and modification of others)

References

Pajek ( V. Batagelj, A. Mrvar: Pajek - Program for Large Network Analysis. Home page http://vlado.fmf.uni-lj.si/pub/networks/pajek/.

W. de Nooy, A. Mrvar, V. Batagelj: Exploratory Social Network Analysis with Pajek, CUP, January 2005

See Also

plot.mat, critFunC, optRandomParC


blockmodelingOld documentation built on May 2, 2019, 5:11 p.m.