I am new to statistical analysis and R. I have data of relative abundance (in percentage) of 5 taxa in 8 ponds. The number of samples in the 8 ponds ranges from 7 to 12 (making the design unbalanced). Can I use PERMANOVA (vegan::adonis2
) and PERMDISP to test if the composition of the 5 taxa is different in the 8 ponds?
Thank you!
I have tried as follows:
matrix<-as.matrix(Data[,c(5:9)]) # columns 5:9 refers to relative abundance of the 5 taxa in percentage
dist<-vegdist(matrix, method="robust.aitchison", na.rm = F)
adonis2(dist~ Pond, data=Data)
anova(betadisper(dist,Data$Pond))
Does the result mean that there are no difference between the ponds as a whole? And how can I analyse the differences of individual taxon among the ponds?
Thank you!