gpt4 book ai didi

r - 在 plotly 上修改热图中的标签 (x,y,z)?

转载 作者:行者123 更新时间:2023-12-05 00:33:39 24 4
gpt4 key购买 nike

我想重命名热图中的标签。例如:
而不是标签说“x:”,我希望标签说“小时:”
而不是标签说“y:”,我希望标签说“天:”

Library(plotly)

p <- plot_ly(z = volcano, colors = colorRamp(c("red", "green")), type = "heatmap")

enter image description here
此外,这将是有用的,例如,如果我们使用数据转换以加强对比,html 交互式标签仍然显示真实数据。

Example

最佳答案

关于什么

library(plotly)
dat <- expand.grid(x = 1:nrow(volcano), y = 1:ncol(volcano))
dat$z <- c(volcano)

plot_ly(height = 500) %>%
layout(autosize = FALSE,
xaxis=list(title = "Hour", titlefont = list(size=20)),
yaxis=list(title = "Day", titlefont = list(size=20))) %>%
add_trace(data = dat, x = ~x, y = ~y, z = ~z, type = "heatmap",
hoverinfo = 'text',
text = ~paste("Hour:", dat$x,
"<br> Day:", dat$y,
"<br> z:", dat$z))

enter image description here

关于r - 在 plotly 上修改热图中的标签 (x,y,z)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54294894/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com