我正在尝试使用库在 Shiny 中创建交互式散点图plotly
,我可以在其中绘制分组数据并将光标移动到每个数据点上。我是新手,plotly
但已广泛使用 Shiny。
这是我想出的一个模拟示例:-
library(shiny)
library(shinyWidgets)
library(plotly)
library(tidyverse)
ui<-fluidPage(
titlePanel("Iris"),
tabsetPanel(
tabPanel("Iris scatter",
sidebarPanel(width=5,
h5("Select the axis variables"),
selectInput("eda_scatter_x", "Select x-axis",
c("Sepal Length"="Sepal.Length",
"Sepal Width" ="Sepal.Width",
"Petal Length"= "Petal.Length",
"Petal Width"= "Petal.Width")),
selectInput("eda_scatter_y", "Select y-axis",
c("Sepal Length"="Sepal.Length",
"Sepal Width" ="Sepal.Width",
"Petal Length"= "Petal.Length",
"Petal Width"= "Petal.Width")),
actionButton(inputId = "eda_run", "Run analysis")),
mainPanel(
plotlyOutput("eda_scatter_graph")
)))
)
server <- function(input,output,session){
observeEvent(input$eda_run,{
output$eda_scatter_graph<- renderPlotly({
iris%>%
group_by(Species)%>%
summarise_at(vars(Sepal.Length:Petal.Width),mean)%>%
plot_ly(x=input$eda_scatter_x, y=input$eda_scatter_y, size=I(c(100,50)))%>%
add_markers()
})
})
}
shinyApp(ui,server)
这给出了这个输出: -
期望的输出
我想要做的是绘制分组数据点,所以当我的光标移动到数据点上时,标记能够告诉我 x 轴和 y 轴坐标加上分组变量名称(在这种情况下, Species
)。最后,我希望能够使用selectInput
框更新 x 轴和 y 轴,但是当您运行应用程序时,它不会更新。
谁能告诉我我做错了什么并建议编辑?
谢谢 :)