在 R 中显示 nmds 图的坐标
show coordinate of nmds plot in R
我是R的新用户,
我想用它来减少我拥有的许多维度(60 列和 60 行)矩阵,
所以我用这个命令得到了情节
library(vegan)
set.seed(2)
example_NMDS=metaMDS(Dim_Matrix,k=4,trymax=100)
plot(example_NMDS)
但是,我想得到的是绘图结果中的点坐标
参考 http://cc.oulu.fi/~jarioksa/softhelp/vegan/html/metaMDS.html
我们可以通过这个命令得到coordinat/value/points
scores(example_NMDS)
我是R的新用户, 我想用它来减少我拥有的许多维度(60 列和 60 行)矩阵, 所以我用这个命令得到了情节
library(vegan)
set.seed(2)
example_NMDS=metaMDS(Dim_Matrix,k=4,trymax=100)
plot(example_NMDS)
但是,我想得到的是绘图结果中的点坐标
参考 http://cc.oulu.fi/~jarioksa/softhelp/vegan/html/metaMDS.html
我们可以通过这个命令得到coordinat/value/points
scores(example_NMDS)