View source: R/class-network.R
| as_cograph | R Documentation |
Creates a lightweight cograph_network object from various network inputs.
The resulting object is a named list with all data accessible via $.
as_cograph(x, directed = NULL, simplify = FALSE, ...)
to_cograph(x, directed = NULL, ...)
x |
Network input. Can be:
|
directed |
Logical. Force directed interpretation. NULL for auto-detect. |
simplify |
Logical or character. If FALSE (default), every transition from tna sequence data is a separate edge. If TRUE or a string ("sum", "mean", "max", "min"), duplicate edges are aggregated. |
... |
Additional arguments (currently unused). |
The cograph_network format is designed to be:
Lean: Only essential data stored, computed values derived on demand
Modern: Uses named list elements instead of attributes for clean $ access
Compatible: Works seamlessly with splot() and other cograph functions
Use getter functions for programmatic access:
get_nodes, get_edges, get_labels,
n_nodes, n_edges
Use setter functions to modify:
set_nodes, set_edges, set_layout
A cograph_network object: a named list with components:
nodesData frame with id, label, and optional layout or metadata columns
edgesData frame with from, to, weight columns
directedLogical indicating if network is directed
weightsFull n×n weight matrix when available for matrix/TNA round-trips, or NULL
dataOriginal estimation data (sequence matrix, edge list, etc.), or NULL
metaConsolidated metadata list with sub-fields:
source (input type string),
layout (layout info list or NULL),
tna (TNA metadata or NULL)
node_groupsOptional node groupings data frame
A cograph_network object. See as_cograph.
get_nodes to extract the nodes data frame,
get_edges to extract edges as a data frame,
n_nodes and n_edges for counts,
is_directed to check directedness,
splot for plotting
mat <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), nrow = 3)
net <- as_cograph(mat)
get_nodes(net)
get_edges(net)
splot(net)
mat <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), nrow = 3)
net <- to_cograph(mat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.