Description Usage Arguments Details Value Author(s) See Also Examples
A RWR on Multiplex object is an R object generated as the result
of calling the function Random.Walk.Restart.Multiplex
(Results of the RWR-M)
1 |
x |
An R object |
isRWRM_Results(x)
checks whether an R object is RWRM_Results
A logical constant, TRUE
if argument x
is
a RWRM_Results object.
Alberto Valdeolivas Urbelz alvaldeolivas@gmail.com
Random.Walk.Restart.Multiplex
,
isRWRMH_Results
1 2 3 4 5 6 7 8 9 10 | m1 <- igraph::graph(c(1,2,1,3,2,3), directed = FALSE)
m2 <- igraph::graph(c(1,3,2,3,3,4,1,4), directed = FALSE)
multiObject <- create.multiplex(m1,m2)
AdjMatrix <- compute.adjacency.matrix(multiObject)
AdjMatrixNorm <- normalize.multiplex.adjacency(AdjMatrix)
Seed <- c(1)
RWR_MultiResults <-
Random.Walk.Restart.Multiplex(AdjMatrixNorm, multiObject,Seed)
isRWRM_Results(RWR_MultiResults)
isRWRM_Results(m1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.