Uses graph_from_adjacency_matrix
function from the igraph
package to convert the network in sparse adjacency matrix format into igraph
network object.
sparseAdjMat.to.igraph(sparseAdjMat, mode = "directed")
A list containing the network object(s) of type DAG.net
.
Network represented as a sparse adjacency matrix (S4 class object dgCMatrix
from package Matrix
).
NOTE: for directed graphs the friend IDs pointing into vertex i
are assumed to be listed in the column i
(i.e, which(sparseAdjMat[,i])
are friends of i
).
Character scalar, passed on to igraph::graph_from_adjacency_matrix
, specifies how igraph should interpret the supplied matrix.
See ?igraph::graph_from_adjacency_matrix
for details.
network
; igraph.to.sparseAdjMat
; sparseAdjMat.to.NetInd
; NetInd.to.sparseAdjMat
;