isRWRMH_Results {RandomWalkRestartMH}R Documentation

Is this R object a RWR on Multiplex-Heterogeneous object (Results of the RWR-MH)?

Description

A RWR on Multiplex Heterogeneous object is an R object generated as the result of calling the function Random.Walk.Restart.MultiplexHet (Results of the RWR-MH)

Usage

isRWRMH_Results(x)

Arguments

x

An R object

Details

isRWRMH_Results(x) checks whether an R object is RWRMH_Results

Value

A logical constant, TRUE if argument x is a RWRMH_Results object.

Author(s)

Alberto Valdeolivas Urbelz alvaldeolivas@gmail.com

See Also

Random.Walk.Restart.MultiplexHet, isRWRM_Results

Examples

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)
h1 <- igraph::graph(c("A","C","B","E","E","D","E","C"), directed = FALSE)
bipartite_relations <- data.frame(m=c(1,3),h=c("A","E"))
multiHetObject <- 
    create.multiplexHet(multiObject,h1,bipartite_relations)
MultiHetTranMatrix <- compute.transition.matrix(multiHetObject)
Multiplex_Seeds <- c(1)
SecondNet_Seeds <- c("E")
RWR_MultiHetResults <- 
    Random.Walk.Restart.MultiplexHet(MultiHetTranMatrix,multiHetObject,
    Multiplex_Seeds ,SecondNet_Seeds)
isRWRMH_Results(RWR_MultiHetResults)
isRWRMH_Results(m1)


[Package RandomWalkRestartMH version 1.10.0 Index]