Extracts the consolidated metadata list from a cograph_network object. The metadata contains source type, layout info, and TNA metadata.
Value
A list with components:
sourceCharacter string indicating input type
layoutList with layout name and seed, or NULL
tnaList with TNA metadata (type, group_name, group_index), or NULL
Examples
mat <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), nrow = 3)
net <- as_cograph(mat)
get_meta(net)
#> $source
#> [1] "matrix"
#>
