gpt4 book ai didi

r - R 热图中的颜色标签(文本)

转载 作者:行者123 更新时间:2023-12-01 02:30:38 25 4
gpt4 key购买 nike

我正在尝试在 R 中制作一个热图,其中标签文本是彩色的(以指示数据点来自哪个组)。

我目前正在使用 heatmap.2,但很乐意使用另一个包。

heatmap.2(data.matrix(data),trace = 'none', dendrogram='none',ColSideColors=col)

此调用为我提供了标签上的彩色条 (ColSideColors),但我想让标签本身着色。

非常感谢!

最佳答案

您将需要创建一个包含 col.axis 的新函数。争论。这些是要使用的函数行:

# there were four long pages of code before this section:

axis(1, 1:nc, labels = labCol, las = 2, line = -0.5, tick = 0, # original line
col.axis="green", # added argument
cex.axis = cexCol)
if (!is.null(xlab))
mtext(xlab, side = 1, line = margins[1] - 1.25)
axis(4, iy, labels = labRow, las = 2, line = -0.5, tick = 0, # original line
col.axis="green", # added argument
cex.axis = cexRow)

关于r - R 热图中的颜色标签(文本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13206335/

25 4 0