Computation of the binary metaweb from a list of graph
getMetaweb(gList)
Arguments
gList: A list of graph objects of class igraph.
Details
This function computes the metaweb from a list of graph. It computes the union (in the sense of graph theory) of the set of graphs.
Returns
getMetaweb returns an object of class igraph.
References
Marc Ohlmann, Vincent Miele, Stephane Dray, Loic Chalmandrier, Louise O'Connor & Wilfried Thuiller, Diversity indices for ecological networks: a unifying framework using Hill numbers. Ecology Letters (2019) doi:10.1111/ele.13221
# Generating a set of Erdos-Renyi graphslibrary(igraph)gList <- c()for(i in1:4){ graphLocal <- erdos.renyi.game(60, type ='gnp', p.or.m=0.1, directed=TRUE) V(graphLocal)$name <- as.character(1:60) gList <- c(gList, list(graphLocal))}names(gList)<- c("A","B","C","D")## building the metawebgraphMetaweb <- getMetaweb(gList)