用多种颜色为轴刻度文本着色

时间:2019-08-13 23:44:53

标签: r plotly heatmap axis-labels

我正在尝试使用heatmap的{​​{1}}包来绘制R,在这里我想为y轴刻度文本的特定标签设置特定的颜色。

这是一个示例数据集:

plotly

这就是我正在尝试的:

set.seed(1)
df <- reshape2::melt(matrix(rnorm(100),10,10,dimnames = list(paste0("G",1:10),paste0("S",1:10))))

由于我收到以下消息,它不起作用: enter image description here

更改:library(plotly) library(dplyr) plot_ly(z=c(df$value),x=df$Var2,y=df$Var1,colors=grDevices::colorRamp(c("darkblue","gray","darkred")),type="heatmap",colorbar=list(title="Scaled Value",len=0.4)) %>% layout(yaxis=list(title=list(color=c(rep("darkred",5),rep("darkblue",5)))))

收件人:yaxis=list(title=list(color=c(rep("darkred",5),rep("darkblue",5))))

或者:yaxis=list(title=list(color=list(c(rep("darkred",5),rep("darkblue",5)))))

或者:yaxis=list(title=list(tickcolor=c(rep("darkred",5),rep("darkblue",5))))

似乎没有帮助。

有什么主意吗?

1 个答案:

答案 0 :(得分:2)

有人在Setting a different font color for specific x axis ticks中为Python提出了类似问题,但设置不同。以下是我为R设置的最佳尝试。

情节:

enter image description here

代码:

library(plotly)
library(dplyr)

# data
set.seed(1)
df <- reshape2::melt(matrix(rnorm(100),10,10,dimnames = list(paste0("G",1:10),paste0("S",1:10))))

# plotly setup
p1 <- plot_ly(z=c(df$value),x=df$Var2,y=df$Var1,colors=grDevices::colorRamp(c("darkblue","gray","darkred")),
              type="heatmap",colorbar=list(title="Scaled Value",len=0.4)) 

p2 <- p1 %>% add_trace(xaxis='x2', showscale=FALSE)

p3 <- p2  %>% layout(xaxis=list(range=list(0,9),
                                tickvals=list(0,1,2,3,4),
                                tickfont=list(color='red')),
                     xaxis2=list(range=list(0,9), overlaying='x',
                                 ticktext = list('s9', 's10'),
                                 tickvals=list(5, 6, 7, 8, 9),
                                 tickfont=list(color='blue')))
# plot it
p3