Description Usage Arguments Details Value Author(s) References Examples
The Markov centrality score uses the concept of a random walk through the graph to calculate the centrality of each vertex.
1 | markovcent(graph, vids = V(graph))
|
graph |
The input graph as igraph object |
vids |
Vertex sequence, the vertices for which the markov centrality values are returned. |
The method uses the mean first-passage time from every vertex to every other vertex to produce a score for each vertex.
More detail at Markov Centrality
A numeric vector contaning the centrality scores for the selected vertices.
Mahdi Jalili m_jalili@farabi.tums.ac.ir
Original code from Bioconductor SANTA package (Cornish AJ, 2014)
White, S. & Smyth, P. Algorithms for estimating relative importance in networks. Proceedings of the ninth ACM SIGKDD international conference on Knowledge discovery and data mining, 2003. ACM, 266-275.
Cornish AJ and Markowetz F (2014). "SANTA: Quantifying the Functional Content of Molecular Networks." PLOS Computational Biology, 10(9), pp. e1003808. http://dx.doi.org/10.1371/journal.pcbi.1003808.
1 2 | g <- graph(c(1,2,2,3,3,4,4,2))
markovcent(g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.