to_uniplex
: Returns an object that includes only a single type of tie
to_main_component
: Returns an object that includes only the main component
without any smaller components or isolates
to_undirected
: Returns an object that has any edge direction removed,
so that any pair of nodes with at least one directed edge will be
connected by an undirected edge in the new network.
This is equivalent to the "collapse" mode in {igraph}
.
to_unweighted
: Returns an object that has all edge weights removed
to_unsigned
: Returns a network with either just the "positive" ties
or just the "negative" ties
to_unnamed
: Returns an object with all vertex names removed
to_named
: Returns an object that has random vertex names added
to_simplex
: Returns an object that has all loops or self-ties removed
to_mode1
: Results in a weighted one-mode object
that retains the row nodes from a two-mode object,
and weights the ties between them on the basis of
their joint ties to nodes in the second mode (columns)
to_mode2
: Results in a weighted one-mode object
that retains the column nodes from a two-mode object,
and weights the ties between them on the basis of
their joint ties to nodes in the first mode (rows).
to_onemode
: Returns an object that has any type/mode attributes removed,
but otherwise includes all the same nodes and ties.
Note that this is not the same as to_mode1()
or to_mode2()
,
which return only some of the nodes and new ties established by coincidence.
to_multilevel
: Returns a network that is not divided into two mode types
but embeds two or more modes into a multimodal network structure.
to_edges
: Returns a matrix (named if possible)
where the edges are the nodes
to_subgraph
: Returns a network subgraph filtered
on the basis of some node-related logical statement.