| isMultiplexHet {RandomWalkRestartMH} | R Documentation |
A Multiplex Heterogeneous object is an R object generated as the result
of calling the function create.multiplexHet
isMultiplexHet(x)
x |
An R object |
isMultiplexHet(x) checks whether an R object is MultiplexHet
A logical constant, TRUE if argument x is
a MultiplexHet object.
Alberto Valdeolivas Urbelz alvaldeolivas@gmail.com
create.multiplexHet,
isMultiplex
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)
isMultiplexHet(multiHetObject)
isMultiplexHet(h1)