Skip to content

NMS axis variance and legend

3 messages · Alida Mercado, gabriel singer, Michael Denslow

#
Hi Alida,
It is my understanding that the concept of variance explained by an
axis does not make sense for NMS. In short, this is because an NMS
solution is the entire configuration so you can not look at one axis
alone. Despite this fact, variance explained by an axis is still
frequently reported in the literature and by many software packages.
Others please correct me if I am wrong here.
Measure of fit for NMS is often done with a shepard plot, see ?stressplot.

the other issue I have is how to get a
Maybe this example, will help with the legend.
library(vegan)
data(dune)
data(dune.env)
mod <- metaMDS(dune)
fig <- plot(mod, type = 'none')
points(fig, 'sites', pch = as.numeric(dune.env$Use))
legend('topleft', legend = c('Hayfield','Haypastu','Pasture'), pch = 1:3)

Also see additional comments by Gavin here.
http://n4.nabble.com/NMDS-Ordination-Graphics-Problem-td1751845.html#a1840305

Hope this helps,
Michael