View source: R/class-network.R
| get_data | R Documentation |
Extracts the original estimation data stored in a cograph_network object. This is the raw input data (e.g., sequence matrix from tna, edge list data frame) preserved for reference.
get_data(x)
x |
A cograph_network object. |
The original data object, or NULL if not stored.
as_cograph, get_meta
mat <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), nrow = 3)
net <- as_cograph(mat)
get_data(net) # NULL (matrices don't store raw data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.