View source: R/structural.properties.R
coreness | R Documentation |
The k-core of graph is a maximal subgraph in which each vertex has at least degree k. The coreness of a vertex is k if it belongs to the k-core but not to the (k+1)-core.
coreness(graph, mode = c("all", "out", "in"))
graph |
The input graph, it can be directed or undirected |
mode |
The type of the core in directed graphs. Character constant,
possible values: |
The k-core of a graph is the maximal subgraph in which every vertex has at least degree k. The cores of a graph form layers: the (k+1)-core is always a subgraph of the k-core.
This function calculates the coreness for each vertex.
Numeric vector of integer numbers giving the coreness of each vertex.
Gabor Csardi csardi.gabor@gmail.com
Vladimir Batagelj, Matjaz Zaversnik: An O(m) Algorithm for Cores Decomposition of Networks, 2002
Seidman S. B. (1983) Network structure and minimum degree, Social Networks, 5, 269–287.
degree()
Other structural.properties:
bfs()
,
component_distribution()
,
connect()
,
constraint()
,
degree()
,
dfs()
,
distance_table()
,
edge_density()
,
feedback_arc_set()
,
girth()
,
is_acyclic()
,
is_dag()
,
is_matching()
,
k_shortest_paths()
,
knn()
,
reciprocity()
,
subcomponent()
,
subgraph()
,
topo_sort()
,
transitivity()
,
unfold_tree()
,
which_multiple()
,
which_mutual()
g <- make_ring(10)
g <- add_edges(g, c(1, 2, 2, 3, 1, 3))
coreness(g) # small core triangle in a ring
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.