Description Usage Arguments Details Value Author(s) See Also Examples
A Multiplex Heterogeneous object is an R object generated as the result
of calling the function create.multiplexHet
1 |
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
1 2 3 4 5 6 7 8 9 | 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.