我有一个有两个情节的Shiny应用程序。如果用户单击顶部绘图中的点,则该点的x和y坐标将保存为活动的Shiny变量(在下面的代码中,它称为pointSel)。
在底部的图中,我希望将此点的x和y坐标绘制为绿点。我目前正在使用它(如下面的脚本中所示)。但是,每次更新pointSel对象时,都会再次绘制第二个绘图。相反,我试图保持第二个情节背景未开辟,并简单地在它上面叠加一个新的绿点。
我认为这需要两件事:
1)在onRender()函数中应用于“data = pointSel()”的isolate()函数。
2)一些语法警告只有在pointSel更新后才添加绿点跟踪。我在评论“$('#pointSel')。on('click',function()”。中添加了暂定语法。
以下是我的代码:
library(plotly)
library(GGally)
library(hexbin)
library(htmlwidgets)
library(tidyr)
library(shiny)
library(edgeR)
library(EDASeq)
library(dplyr)
library(data.table)
library(ggplot2)
ui <- shinyUI(fluidPage(
plotlyOutput("plot1"),
plotlyOutput("plot2")
))
server <- shinyServer(function(input, output) {
data <- data.frame(mpg=mtcars$mpg,qsec=mtcars$qsec)
output$plot1 <- renderPlotly({
p <- qplot(data$mpg,data$qsec)
pP <- ggplotly(p)
pP %>% onRender("
function(el, x, data) {
el.on('plotly_click', function(e) {
var pointSel = [e.points[0].x, e.points[0].y]
Shiny.onInputChange('pointSel', pointSel);
})}
", data = data)
})
pointSel <- reactive(input$pointSel)
output$plot2 <- renderPlotly({
p2 <- qplot(mpg,qsec,data=data, geom="point", alpha=I(0))
pP2 <- ggplotly(p2)
pP2 %>% onRender("
function(el, x, data) {
console.log('Whole bottom plot is being redrawn')
var myX = data[0]
var myY = data[1]
//$('#pointSel').on('click',function() {
var Traces = [];
var trace = {
x: [myX],
y: [myY],
mode: 'markers',
marker: {
color: 'green',
size: 10
}
};
Traces.push(trace);
Plotly.addTraces(el.id, Traces);
//})
}", data = pointSel())
})
})
shinyApp(ui, server)
注意:这与我之前发布的问题类似,并且有一个有用的答案(Shiny actionButton() output in onRender() function of htmlWidgets)。我一直在遇到这个问题的变种(无法将图的各个方面覆盖到onRender()函数中的背景图),而这个当前帖子只是该问题的另一个变体。我想为这种情况找到类似的答案!谢谢你的任何建议。
答案 0 :(得分:2)
您可以在onRender
函数中使用自定义消息处理程序,并在server.R
中使用它来传递选定的点坐标。
第二个图的onRender
函数可能如下所示:
function(el, x, data) {
Shiny.addCustomMessageHandler('draw_point',
function(point) {
var Traces = [];
var trace = {
x: [point[0]],
y: [point[1]],
mode: 'markers',
marker: {
color: 'green',
size: 10
}
};
Traces.push(trace);
console.log(Traces);
Plotly.addTraces(el.id, Traces);
});
}
在server.R
你可以做到:
observe({
session$sendCustomMessage(type = "draw_point", input$pointSel)
})
每当选择一个点时,坐标将被发送到onRender
中定义的函数,并且将绘制该点。