如何在 R 中覆盖和编辑 plotly() 3D 对象的悬停模板

How to overwrite and edit the hover template of a plotly() 3D object in R

我正在使用 plotly() 创建一个 3D 散点图,并希望形成悬停模板。我的数据并不总是具有相同的列名,但目前这就是我的数据的样子以及我构建绘图的方式(列名可能不同,因此我将它们保存在一个向量中并重命名我的数据 table) :

set.seed(123)
dt <- data.table(date = seq(as.Date('2020-01-01'), by = '1 day', length.out = 365),
                 spotDE = rnorm(365, 25, 1), windDE = rnorm(365, 10000, 2), 
                 resLoadDE = rnorm(365, 50000, 2), check.names = FALSE)

## Extract the column names of the two selected variables: ##
product1 <- colnames(dt[, 2])
product2 <- colnames(dt[, 3])
product3 <- colnames(dt[, 4])

## Rename the data table: ##
colnames(dt) <- c("date", "prod1", "prod2", "prod3")


## 3D Plot Construction: ##
plot3D <- plot_ly(data = dt, x = ~prod1, y = ~prod2, z =  ~prod3, type = "scatter3d", 
                  mode = "markers", 
                  marker = list(size = 5, 
                                colorscale = list(c(0, 1), c("#A1D99B", "#005A32")),
                                showscale = FALSE)
          ) %>%
          layout(scene = list(xaxis = list(title = product1),
                              yaxis = list(title = product2),
                              zaxis = list(title = product3)), 
                 title = paste('<span style="font-size: 16px;"><b>', product1, "vs.", 
                               product2, "vs.", product3, '</span>'), 
                 margin = list(t = 100))

剧情是这样的:

现在我需要你的帮助: 我怎样才能在 hovertemplate 而不是 xyz(在本例中:spotDEwindDEresLoadDE)??

我已经尝试了一些不同的方法,但没有一个有效:

1:这里只是在xyz之后添加了这个。但我想要它。

text = ~paste(product1, ": ", prod1)

2:这里只是在xyz之后添加了这个。但我想要它。

hovertemplate = paste("product1:  %{x}<br>",
                      "%{product2}:  %{y}<br>",
                      "%{product3}:  %{z}<extra></extra>")

我认为你所拥有的非常接近。我刚刚添加了 hoverinfo = 'text' 然后 textplot_ly 引用 product1product2product3。您可以使用 sprintfformatround 或其他来控制数字输出的更多细节,包括小数位。

plot_ly(data = dt, x = ~prod1, y = ~prod2, z =  ~prod3, type = "scatter3d", 
                  mode = "markers", 
                  marker = list(size = 5, 
                                colorscale = list(c(0, 1), c("#A1D99B", "#005A32")),
                                showscale = FALSE),
        hoverinfo = 'text',
        text = ~paste0(product1, ": ", prod1, "<br>", product2, ": ", prod2, "<br>", product3, ": ", prod3)
) %>%
  layout(scene = list(xaxis = list(title = product1),
                      yaxis = list(title = product2),
                      zaxis = list(title = product3)), 
         title = paste('<span style="font-size: 16px;"><b>', product1, "vs.", 
                       product2, "vs.", product3, '</span>'), 
         margin = list(t = 100))

情节