0

“Betadisper”通过将原始距离减少到主坐标来计算对象与其组质心之间的非欧几里得距离。它是 Levene 方差同质性检验的多元模拟。http://cc.oulu.fi/~jarioksa/softhelp/vegan/html/betadisper.html

我的问题是,我想提取列表中每个样本点(对象)到质心的距离值,这相当于 Betadisper 中可用的箱线图所使用的数据。我怎么能那样做?

x= betadisper(d, group, type = c("centroid”))
boxplot(x)

谢谢!

4

1 回答 1

4

看看str(x)你就会发现:

x$distances
with(x, boxplot(distances~group))

hth

于 2014-05-06T12:53:41.683 回答