Finds number of compartments, based on multivariate ordination techniques, and labels interactions according to the compartment they belong to.
compart(web)
Arguments
web: A bipartite interaction web, i.e.~a matrix with higher (cols) and lower (rows) trophic levels.
Details
Internal function, to be called by networklevel.
Note
Note that up to (and including) version 0.85 we used a code based on correspondence analysis (see Lewinsohn et al. 2006). This is, however, faulty for webs with many same-linked species. Hence we resorted to a brute-force search for compartments, which is orders of magnitude slower, but at least works correctly. Only in version 1.18 Juan M. Barreneche eventually found a solution that is fast and works with ties!
Returns
Returns a list with two entries: - cweb: A matrix similar to web, but now with compartment numbers instead of interaction values.
ncompart: The number of compartments.
References
Lewinsohn, T. M., P. I. Prado, P. Jordano, J. Bascompte, and J. M. Olesen (2006) Structure in plant-animal interaction assemblages. Oikos 113 , 174--184
# make a nicely comparted web:web <- matrix(0,10,10)web[1,1:3]<-1web[2,4:5]<-1web[3:7,6:8]<-1web[8:10,9:10]<-1web <- web[-c(4:5),]#oh, and make it asymmetric!web <- web[,c(1:5,9,10,6:8)]#oh, and make it non-diagonalcompart(web)# or, standard, use Safariland as example:data(Safariland)compart(Safariland)