Skip to content

How does abundance effect output of vegan metaMDS

3 messages · Vindoggy !, Jari Oksanen

#
Dear Vindoggy,

I wondered how do you *know* that species three is influential. Your analysis shows that it is linearly well explained by the ordination, but it does *not* show that the species influences the ordination. 

We can study the influence of a species by seeing how much the result will change if we remove the species: removal of an influential species will change the result much. We can assess the change in ordination using the residual sum of squares of Procrustes ordination where we compare results of full data to results when we remove one species. The following continues from your analysis where you had the ordination result 'mds':

impo <- numeric(4)
for(i in 1:4) impo[i] <- procrustes(mds, metaMDS(DF[,-i]))$ss

This gives us importance values:

impo
# [1] 0.13510647 0.05256924 0.00666738 0.03128587

Third value is lowest. This means that removing of species 3 hardly influences the results, and the species is not influential. By far the most important species is number 1.

Cheers, Jari Oksanen
On 19/02/2014, at 06:10 AM, Vindoggy ! wrote: