x: Either a single square matrix (adjacency matrix), or a list of these.
...: Further arguments passed to the method.
directed: Logical scalar, if FALSE then the function only checks the upper diagonal of the matrix assuming it is undirected.
hyper, multiple, bipartite: Currently Ignored. Right now all the network objects created by this function set these parameters as FALSE.
loops: Logical scalar. When FALSE (default) it will skip the diagonal of the adjacency matrix.
Returns
An object of class network. This is a list with the following elements:
melMaster Edge List: A named list with length equal to the number of edges in the network. The list itself has 3 elements: inl (tail), outl (head), and atl (attribute). By default atl, a list itself, has a single element: na.
galGraph Attributes List: a named list with the following elements:
n Number of nodes
mnext Number of edges + 1
directed,hyper,loops,multiple,bipartite The arguments passed to the function.
valVertex Attributes List
ielIn Edgest List
oelOut Edgest List
Details
This version does not support adding the name parameter yet. The function in the network package includes the name of the vertices as an attribute.
Just like in the network function, NA are checked and added accordingly, i.e. if there is an NA in the matrix, then the value is recorded as a missing edge.