向R绘图图中添加特定图例

让·贝尔汀

有人知道如何在R plot_ly图表中添加以下图例吗?

在此处输入图片说明

请在下面找到可复制的示例

在此示例中,条形颜色取决于速度值:我想如上所述打印图例,而不仅获得“迹线0” ...

library(plotly)
library(data.table)

example_data <- data.table(x = c(1,2,3,4,5,6), y = c(7,9,4,3,8,9), velocity = c(0.6,1.4,5,4,0.2,1.1))
example_data$color <- cut(example_data$velocity,breaks = c(0,0.8,1.2,1.5,10),labels = c("lightgreen","darkgreen","yellow","red"))

plot_ly(data = example_data, x = ~ x,y =  ~y ,color =  ~ I(color),type = "bar") %>% 
  layout(showlegend = TRUE)

在此处输入图片说明

非常感谢 !

MLavoie

您可以使用图例名称创建一个新列。并将因子从低(0-0.8)重新排序为高(> 1.5)。

您可以尝试以下方法:

example_data <- data.table(x = c(1,2,3,4,5,6), y = c(7,9,4,3,8,9), velocity = c(0.6, 1.4, 5, 4, 0.2, 1.1), 
                           name = c("0 - 0.8", "1.2 - 1.5", " >1.5", " >1.5", "0 - 0.8", "0.8 - 1.2"))

example_data$name <- as.factor(example_data$name)
example_data$name <- factor(example_data$name, levels = c("0 - 0.8", "0.8 - 1.2", "1.2 - 1.5", " >1.5"))

pal <- c("lightgreen", "darkgreen", "yellow", "red")

plot_ly(data = example_data, x = ~ x,y =  ~y ,color =  ~as.factor(name), colors = ~pal, type = "bar") %>% 
  layout(showlegend = TRUE, legend = list(orientation = "h",
                                          xanchor = "center",  
                                          x = 0.5, y = 7))

在此处输入图片说明

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章