当我通过Jaccard指数分析β多样性并执行函数以比较通过组处理添加的社区的β多样性时,生成的PCoA图并没有像图PCoA图上所示的那样构建多边形,其中添加了Muñoz-Li & Jover,2020。
生成的图形也会上传到由我们的脚本生成的图形中。
我使用这个脚本:
library(betapart)
library(vegan)
setwd('D:/Trabajo/Docencia/Tutorias/PIE 2022/Malacofauna/Analisis diversity')
BetaAll=read.csv('DivBetaAll.csv', sep=';')
groups= factor(c(rep(1,1), rep(2,1), rep(3,1), rep(4,1)))
dist<-beta.pair(BetaAll, index.family="jaccard")
dist[[3]] # To get all beta diversity
dist[[2]] # To get the pairwise Jaccard index nestedness partition
dist[[1]] # To get the pairwise Jaccard index turnover partition between communities
bd<-betadisper(dist[[3]],groups) # If we want to compare the beta diversities of communities aggregated by the treatments of groups
plot(bd)
bdboxplot(bd)
anova(bd)
1条答案
按热度按时间jm81lzqq1#
我没有权限访问您的数据,您可以尝试修改此内容。library(betapart)library(vegan)