我想获得一个自定义色标,它看起来像 plotly heatmap ( plot_ly(z = data, colors = customcolors, type = "heatmap"))
palette <- colorRampPalette(c("darkblue", "blue", "lightblue1",
"green","yellow", "red", "darkred"))
plot(rep(1,50),col=palette(50), pch=19, cex=3, xlab = "", ylab ="", axes = F)
Run Code Online (Sandbox Code Playgroud)
蓝色端代表 1,红色端代表 10^6,绘制的数据在这个区间会有不同的值。
您用于生成调色板的代码工作正常。您只需要提供与heatmap. 以下代码提供了这一点:
library(RColorBrewer)
library(plotly)
# your palette definition
palette <- colorRampPalette(c("darkblue", "blue", "lightblue1",
"green","yellow", "red", "darkred"))
set.seed(9876) # for reproducibility
## a complete random set
hmdata <- matrix(data = sample(x = 1:10^6, size = 100*100), nrow = 100, ncol = 100)
plot_ly(z = hmdata, colors = palette(50), type = "heatmap")
Run Code Online (Sandbox Code Playgroud)
这给出了以下热图:
## a random set that has been sorted
hmdata_s <- matrix(data = sort(sample(x = 1:10^6, size = 100*100)), nrow = 100, ncol = 100)
plot_ly(z = hmdata_s, colors = palette(50), type = "heatmap")
Run Code Online (Sandbox Code Playgroud)
请让我知道这是否是您想要的。
您可以设置自定义的规模plot_ly有zauto,zmax和zmin。以下 2 段代码和图表将说明这一点:
比例设置为 1 到 100,数据变化类似:
hmdata_s3 <- matrix(data = sort(sample(x = 1:100, size = 100*100, replace = TRUE)), nrow = 100, ncol = 100)
plot_ly(z = hmdata_s3, colors = palette(50), type = "heatmap", zauto = FALSE, zmin = 1, zmax = 100)
Run Code Online (Sandbox Code Playgroud)
比例设置为 1 到 100,数据仅在 50 到 100 之间变化
hmdata_s4 <- matrix(data = sort(sample(x = 50:100, size = 100*100, replace = TRUE)), nrow = 100, ncol = 100)
plot_ly(z = hmdata_s4, colors = palette(50), type = "heatmap", zauto = FALSE, zmin = 1, zmax = 100)
Run Code Online (Sandbox Code Playgroud)