Skip to content
Prev 1321 / 7420 Next

using Adonis for zero data

On Mon, 2010-06-21 at 15:45 +0100, Emma Stone wrote:
Are you interested in the magnitude - should abundant species dominate
the dissimilarity? - differences? Euclidean could be OK if you were
magnitude focussed but there are often better dissimilarities for
ecological data where absolute difference rather than squared
differences are used.
Is that exactly how you ran this in R? If so it is incorrect; argument
'method' is supposed to be passed a character which is the name of the
dissimilarity coefficient you want to use, one provided by vegdist().
See ?vegdist for the available options.
I doubt it, if you are interested in normalising the species as MARGIN =
1 be default for that method and that refers to rows. But it depends on
what you hope to achieve by transforming the sites/samples. If you want
the species to all have the same mean and variance, then

dis <- vegdist(scale(resp), "euclidean")

should do it but then the analysis will be focussed on the relative
abundance to some extent.
Given that the default for 'method' is "bray" and vegan passes R CMD
check on a large number of systems, that comment is patently *not* true.
If this doesn't sort your problem out, can you past back exactly the
commands you used and the output from R so we can diagnose what is going
on?

HTH

G