| remove_weights.matrix {SeqNet} | R Documentation |
Removes the weights of all connections
## S3 method for class 'matrix' remove_weights(x, ...)
x |
Either a 'network', 'network_module', or 'matrix' object. |
... |
Additional arguments. |
The modified object.
# Create a random network with 10 nodes and add random edge weights. nw <- random_network(10) nw <- gen_partial_correlations(nw) is_weighted(nw) # Remove the edge weights from the network. nw <- remove_weights(nw) is_weighted(nw)