" Betadisper"通过减少到主坐标的原始距离来计算对象与其组质心之间的非欧几里德距离。它是Levene测试方差同质性的多变量类似物。 http://cc.oulu.fi/~jarioksa/softhelp/vegan/html/betadisper.html
我的问题是,我想提取列表中每个采样点(对象)到质心的距离值,这相当于Betadisper中可用的箱图所使用的数据。我怎么能这样做?
x= betadisper(d, group, type = c("centroid”))
boxplot(x)
谢谢!
答案 0 :(得分:3)
请参阅str(x)
,您会发现:
x$distances
with(x, boxplot(distances~group))
HTH