Description Usage Arguments Details Value Examples
View source: R/info_signature.R
Compute the information signature
1 | info_signature(x, what, block_size = 4, offset = 4)
|
x |
an igraph object. |
what |
graph elements to be removed (i.e. edges or vertices). |
block_size |
block size required to estimate the Kolmogorov-Chaitin complexity of |
offset |
offset required to estimate the Kolmogorov-Chaitin complexity of |
The information signature σ(G) of graph G is the distribution of information values for either the edges or vertices of G, sorted decreasingly by information contribution.
Information contributions above and below zero respectively correspond to elements whose removal makes the graph lose or gain information.
Neutral elements are, on the other hand, those whose removal has no effect on the graph's information content.
This function is simply a ranking of info_spectra
.
A data frame corresponding to the information signature of the input graph.
1 2 3 4 5 6 | ## Not run:
# Compute the information signature of the Folkman graph
folkman <- make_graph("Folkman")
is <- info_signature(folkman)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.