Error when doing NMDS plot using vegan software

Hi,
I am currently carrying out an analysis on a species community data matrix. I have an abundance of each bird species against the plots they were found in. My Analysis was working well until I realised a lot of my values are zero as some species of bird were not found in all of the plots.

This is my current code and the errors associated
abundmat <- read.csv("matrix.csv",row.names=1)
View(abundmat)
groupmat <- read.csv("Matrix Group.csv",row.names=1)
View(groupmat)

abundmat.rel <- decostand(abundmat,method = "total")

abund.distmat <- vegdist(abundmat.rel,method="bray")

abund.distmat <-
as.matrix(abund.distmat,labels = T)
write.csv(abund.distmat,"island_distmat.csv")

abundmat_NMDS <- metaMDS(abund.distmat,
distance = "bray",
k = 3,
maxit = 999,
trymax = 250,
wascores = TRUE)

-Warning message:
In metaMDS(abund.distmat, distance = "bray", k = 3, maxit = 999, :
stress is (nearly) zero: you may have insufficient data

goodness(abundmat_NMDS)

stressplot(abundmat_NMDS)

the stress plot had no correlation and the non metric fit and linear fit was =1.

is there any way I can change this ?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.