R Shiny:当使用renderPlotly时,图例会分裂

huangapple go评论99阅读模式
英文:

R Shiny: the legend splits when renderPlotly is used

问题

我注意到一个奇怪的现象,renderPlotly可以将相同变量的图例分开。

例如,当使用renderPlot()时,生成的图表如下所示:R Shiny:当使用renderPlotly时,图例会分裂
然而,如果我尝试将其转换为Plotly对象,它会变成这样:
R Shiny:当使用renderPlotly时,图例会分裂

有人知道发生了什么,以及如何解决这个问题吗?谢谢!

英文:

I noticed a strange phenomenon that renderPlotly can split the legend of the same variable.

For example, when renderPlot() is used, the produced graph looks like this:R Shiny:当使用renderPlotly时,图例会分裂
However, if I tried to convert it into a plotly object, it changed into this:
R Shiny:当使用renderPlotly时,图例会分裂

Does anyone know what is going on and how to fix this problem? Thank you!
ggplot version:

  1. library(shiny)
  2. library(plotly)
  3. ColorblindnessFriendlyValues <- c("Same" = "#648FFF", "Alt" = "#FFB000")
  4. ui <- fluidPage(
  5. sidebarLayout(
  6. sidebarPanel(
  7. sliderInput("crossloadings", "Number Crossloadings",
  8. min = 1, max = 10, value = 5),
  9. sliderInput("group1", "Group 1",
  10. min = 0, max = 1, value = 0.5),
  11. sliderInput("group2", "Group 2",
  12. min = 0, max = 1, value = 0.5)
  13. ),
  14. mainPanel(
  15. plotlyOutput("plot") # Changed here
  16. )
  17. )
  18. )
  19. server <- function(input, output) {
  20. output$plot <- renderPlotly({
  21. number_crossloadings <- seq(1, input$crossloadings)
  22. group1 <- runif(input$crossloadings, min = 0, max = input$group1)
  23. group2 <- runif(input$crossloadings, min = 0, max = input$group2)
  24. results <- data.frame(number_crossloadings, group1, group2)
  25. plot <- ggplot(data=results, aes(x=number_crossloadings))+
  26. geom_line(aes(y=group1,
  27. color="Same"))+
  28. geom_line(aes(y=group2,color="Alt"))+
  29. suppressWarnings(geom_point(aes(y=group1,
  30. color="Same",
  31. shape = "Same",
  32. text = paste0("# of cross Loadings: ", number_crossloadings,
  33. "<br>SRMR: ", sprintf('%.3f', group1)))))+
  34. suppressWarnings(geom_point(aes(y=group2,
  35. color="Alt",
  36. shape = "Alt",
  37. text = paste0("# of cross Loadings: ", number_crossloadings,
  38. "<br>SRMR: ", sprintf('%.3f', group2)))))+
  39. scale_color_manual(values = ColorblindnessFriendlyValues, labels = c("Same", "Alt")) +
  40. scale_shape_manual(values = c("Same" = 16, "Alt" = 17), labels = c("Same", "Alt")) +
  41. geom_abline(color="grey",slope=0, intercept=0.08) +
  42. labs(color = "Legend", shape = "Legend") +
  43. ylim(NA,1)
  44. ggplotly(plot,tooltip = c("text"))
  45. })
  46. }
  47. shinyApp(ui, server)

Plotly version:

  1. library(shiny)
  2. library(plotly)
  3. ColorblindnessFriendlyValues <- c("Same" = "#648FFF", "Alt" = "#FFB000")
  4. ui <- fluidPage(
  5. sidebarLayout(
  6. sidebarPanel(
  7. sliderInput("crossloadings", "Number Crossloadings",
  8. min = 1, max = 10, value = 5),
  9. sliderInput("group1", "Group 1",
  10. min = 0, max = 1, value = 0.5),
  11. sliderInput("group2", "Group 2",
  12. min = 0, max = 1, value = 0.5)
  13. ),
  14. mainPanel(
  15. plotOutput("plot")
  16. )
  17. )
  18. )
  19. server <- function(input, output) {
  20. output$plot <- renderPlot({
  21. number_crossloadings <- seq(1, input$crossloadings)
  22. group1 <- runif(input$crossloadings, min = 0, max = input$group1)
  23. group2 <- runif(input$crossloadings, min = 0, max = input$group2)
  24. results <- data.frame(number_crossloadings, group1, group2)
  25. plot <- ggplot(data=results, aes(x=number_crossloadings))+
  26. geom_line(aes(y=group1, color="Same"))+
  27. geom_line(aes(y=group2,color="Alt"))+
  28. suppressWarnings(geom_point(aes(y=group1,
  29. color="Same",
  30. shape = "Same",
  31. text = paste0("# of cross Loadings: ", number_crossloadings,
  32. "<br>SRMR: ", sprintf('%.3f', group1)))))+
  33. suppressWarnings(geom_point(aes(y=group2,
  34. color="Alt",
  35. shape = "Alt",
  36. text = paste0("# of cross Loadings: ", number_crossloadings,
  37. "<br>SRMR: ", sprintf('%.3f', group2)))))+
  38. scale_color_manual(values = ColorblindnessFriendlyValues, labels = c("Same", "Alt")) +
  39. scale_shape_manual(values = c("Same" = 16, "Alt" = 17), labels = c("Same", "Alt")) +
  40. geom_abline(color="grey",slope=0, intercept=0.08) +
  41. labs(color = "Legend", shape = "Legend") +
  42. ylim(NA,1)
  43. plot
  44. })
  45. }
  46. shinyApp(ui, server)

答案1

得分: 1

Whenever the translation ggplot <-> plotly does not yield the results I want, I use plot_ly directly as it allows for finer control.

Having said that, you can generate a similar plot with plot_ly like this (N.B. I changed your data structure a bit to avoid some duplication):

  1. output$plot <- renderPlotly({
  2. number_crossloadings <- seq(1, input$crossloadings)
  3. group1 <- runif(input$crossloadings, min = 0, max = input$group1)
  4. group2 <- runif(input$crossloadings, min = 0, max = input$group2)
  5. results <- data.frame(x = rep(number_crossloadings, 2),
  6. y = c(group1, group2),
  7. g = rep(c("Same", "Alt"), each = input$crossloadings))
  8. plot_ly(results,
  9. x = ~ x,
  10. y = ~ y,
  11. colors = ColorblindnessFriendlyValues,
  12. symbols = c("triangle-up", "circle")) %>%
  13. add_trace(type = "scatter",
  14. mode = "lines",
  15. showlegend = FALSE,
  16. hoverinfo = "none",
  17. color = I("gray"),
  18. x = range(results$x) + c(-1, 1) * .2,
  19. y = c(.08, .08)) %>%
  20. add_trace(type = "scatter",
  21. mode = "markers+lines",
  22. color = ~ g,
  23. symbol = ~ g,
  24. marker = list(size = 8),
  25. hoverinfo = "text",
  26. text = ~ paste0("# of cross Loadings: ", number_crossloadings,
  27. "<br>SRMR: ", sprintf("%.3f", y))) %>%
  28. layout(legend = list(title = list(text = "Legend")),
  29. xaxis = list(title = list(text = "number_crossloadings")),
  30. yaxis = list(title = list(text = "y")))
  31. })

R Shiny:当使用renderPlotly时,图例会分裂

Abline

I used a separate trace for the abline, another option would be to add a shape to layout like this:

  1. layout(
  2. #...
  3. shapes = list(
  4. list(
  5. type = "rect",
  6. x0 = 0,
  7. x1 = 1,
  8. xref = "paper",
  9. y0 = 0.08,
  10. y1 = 0.08,
  11. yref = "y",
  12. line = list(dash = "solid",
  13. color = "grey"),
  14. layer = "below"
  15. )
  16. )
  17. )
英文:

Whenever the translation ggplot <-> plotly does not yield the results I want, I use plot_ly directly as it allows for finer control.

Having said that, you can generate a similar plot with plot_ly like this (N.B. I changed your data structure a bit to avoid some duplication):

  1. output$plot &lt;- renderPlotly({
  2. number_crossloadings &lt;- seq(1, input$crossloadings)
  3. group1 &lt;- runif(input$crossloadings, min = 0, max = input$group1)
  4. group2 &lt;- runif(input$crossloadings, min = 0, max = input$group2)
  5. results &lt;- data.frame(x = rep(number_crossloadings, 2),
  6. y = c(group1, group2),
  7. g = rep(c(&quot;Same&quot;, &quot;Alt&quot;), each = input$crossloadings))
  8. plot_ly(results,
  9. x = ~ x,
  10. y = ~ y,
  11. colors = ColorblindnessFriendlyValues,
  12. symbols = c(&quot;triangle-up&quot;, &quot;circle&quot;)) %&gt;%
  13. add_trace(type = &quot;scatter&quot;,
  14. mode = &quot;lines&quot;,
  15. showlegend = FALSE,
  16. hoverinfo = &quot;none&quot;,
  17. color = I(&quot;gray&quot;),
  18. x = range(results$x) + c(-1, 1) * .2,
  19. y = c(.08, .08)) %&gt;%
  20. add_trace(type = &quot;scatter&quot;,
  21. mode = &quot;markers+lines&quot;,
  22. color = ~ g,
  23. symbol = ~ g,
  24. marker = list(size = 8),
  25. hoverinfo = &quot;text&quot;,
  26. text = ~ paste0(&quot;# of cross Loadings: &quot;, number_crossloadings,
  27. &quot;&lt;br&gt;SRMR: &quot;, sprintf(&quot;%.3f&quot;, y))) %&gt;%
  28. layout(legend = list(title = list(text = &quot;Legend&quot;)),
  29. xaxis = list(title = list(text = &quot;number_crossloadings&quot;)),
  30. yaxis = list(title = list(text = &quot;y&quot;))
  31. })

R Shiny:当使用renderPlotly时,图例会分裂

Abline

I used a separate trace for the abline, another option would be to add a shape to layout like this:

  1. layout(
  2. #...
  3. shapes = list(
  4. list(
  5. type = &quot;rect&quot;,
  6. x0 = 0,
  7. x1 = 1,
  8. xref = &quot;paper&quot;,
  9. y0 = 0.08,
  10. y1 = 0.08,
  11. yref = &quot;y&quot;,
  12. line = list(dash = &quot;solid&quot;,
  13. color = &quot;grey&quot;),
  14. layer = &quot;below&quot;
  15. )
  16. )
  17. )

huangapple
  • 本文由 发表于 2023年5月11日 08:44:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/76223433.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定