如何对 PCoA 散点图进行颜色编码

发布于 2024-12-19 12:48:48 字数 453 浏览 3 评论 0原文

所以我对此很陌生。我需要在以下数据矩阵上运行 PCoA。我能够使用 ADE4、labdsv、Ginko、Aabel 软件运行我的分析。困扰我的是如何对散点图中的标签进行颜色编码。我的矩阵是一个存在/不存在矩阵,顺序如下:

SpecieName Value1 Value2
A1         0      1
A2         1      1
A3         1      1
B1         0      0
B2         0      1
E1         1      0
E2         0      0

我想要的是用红色表示 A1A2A3>B1B2 为蓝色,所有 E 为黑色。任何帮助将不胜感激。

So I am new to this. I need to run PCoA on the following data matrix. I am able to run my analyses using ADE4, labdsv, Ginko, Aabel softwares. Whats bothering me is how to color code the labels in the scatter plot. My matrix is a presence/absence matrix in the order:

SpecieName Value1 Value2
A1         0      1
A2         1      1
A3         1      1
B1         0      0
B2         0      1
E1         1      0
E2         0      0

What I want is to represent A1, A2, and A3 in red, B1 and B2 in Blue and all the E ones in black. Any help will be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的背包 2024-12-26 12:48:48

只需将表示这些组的因子传递给绘图命令即可:

data = read.table('data.txt', header=T)

data.pca = prcomp(data[,-1])

groups = factor(gsub('(.).', '\\1', data$SpecieName))

plot(data.pca$x, col=groups)

在此处输入图像描述

另外,如果您想设置 < em>特定颜色,您始终可以以相同的方式索引到自定义列表:

cols = c('red', 'blue', 'black')[groups]
plot(data.pca$x, col=cols)

Just pass in a factor that denotes these groups to the plotting command:

data = read.table('data.txt', header=T)

data.pca = prcomp(data[,-1])

groups = factor(gsub('(.).', '\\1', data$SpecieName))

plot(data.pca$x, col=groups)

enter image description here

Also, if you want to set specific colors, you can always index into a custom list the same way:

cols = c('red', 'blue', 'black')[groups]
plot(data.pca$x, col=cols)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文