nested(web, method = "binmatnest2", ..., rescale = FALSE)
nestedness
(0 = cold = highly nested; 100 = hot = not nested at all). It uses the original program of Miguel Rodr�guez-Giron�s, only called from R; binmatnest2, in contrast, is the implementation in nestedtemp
of the same algorithm by Jari Oksanen. Because binmatnest sometimes (and to us unexplicably) invert the matrix, we prefer the binmatnest2 option.}
discrepancy
calls the function with the same name, discrepancy2 calls nesteddisc
, which handles ties differently. Most of the time, these two should deliver very, very similar results. Higher values indicate lower nestedness.}
nestednodf
in C.score
calculates the number of checkerboard pattern in the matrix. As default, it normalises this value between min and max, so that values of 0 indicate no checkerboards (i.e. nesting), while a value of 1 indicates a perfect checkerboard. checker is the non-normalised version, based on nestedchecker
.}
wine
for details.}C.score
, wine
, nestedness
, discrepancy
; and, within nestedtemp
, nestedchecker
, nesteddisc
, nestednodf
data(Safariland)
nested(Safariland, "ALL")
nested(Safariland, "ALL", rescale=TRUE)
# illustration that non-normalised C.score and checker are the same:
nested(Safariland, c("C.score", "checker"), normalise=FALSE)
Run the code above in your browser using DataLab