如何广告到我的cmdscale图?

时间:2017-05-02 07:59:46

标签: r plot

我使用我在线修改的脚本创建了一个cmdscale plot,在R中绘制了浮游植物样本中的色素数据。

https://drive.google.com/open?id=0B_nGJOKiTVD6cVFNY2dVV01seEE

   d <- dist(fraktioneradRatio_15m2)
   fit <- cmdscale(d, eig = TRUE, k = 4)
   x <- fit$points[, 1]
   y <- fit$points[, 2]
   plot(x, y, main="Fractions 15m")
   city.names <- c("1", "2", "3",
                "4", "5", "6",
                "7", "9", "10",
                "11", "12")
   text(x, y, pos = 4, labels = city.names)

情节很好,看起来不错。我现在想要添加具有设定距离的环,以便可以轻松识别簇之间的距离。有什么方法可以做到吗?

0 个答案:

没有答案