I am currently trying to understand how Isomap results will differ from PCA and MDS and if they are more suited for my data. For this I started to work with the isomap function provided by vegan in R using the BCI dataset and their basic example https://www.rdocumentation.org/packages/vegan/versions/2.4-2/topics/isomap (code below). Several publications compare the residual variance as a good measure (e.g. the "original paper by Tenenbaum from 2002, pg. 2321) https://web.mit.edu/cocosci/Papers/sci_reprint.pdf However, so far I have failed to extract this information from the object "ord" in the example. There is this element ord[["eig"]], probably connected to it, but so far I am confused. Help would be much appreciated!
> data(BCI)
dis <- vegdist(BCI)
tr <- spantree(dis)
pl <- ordiplot(cmdscale(dis), main="cmdscale")
lines(tr, pl, col="red")
ord <- isomap(dis, k=3)
ord
plot(ord[["eig"]]) # plot of the eig values, index represents sample number (?)