@rumsinha wrote:
1
down vote
favoriteI am creating bubble plot using library(bubbles) in r and shiny.
I get the plot but my requirement is I should be able to capture the value in each node when user clicks so that I can create my next plot based on this input.
How can I plugin the javascript to get the desired output.
Appreciate any help on this.
ui.R
bubblesOutput("Plot", width = "100%", height = 600)
server.R
output$Plot <- renderBubbles({
df <- datadf[,c("A","B")]
df$B<-as.numeric(df$B)
bubbles(value=df$B, label=df$A, key = df$A,color = rainbow(length(count), alpha=NULL))
})
Posts: 1
Participants: 1