I am learning how to do PCoA, but when I test metaMDS
, the result is different.
NMDS<-metaMDS(eurodist)
plot(NMDS)
NMDS<-metaMDS(as.dist(eurodist))
plot(NMDS$points)
http://www.davidzeleny.net/anadat-r/doku.php/en:pcoa_nmds this is where I learned.
I thought MDS
is for PCoA, while NMDS
is not, dose the above sample mean metaMDS
can do both MDS
and NMDS
?