rbokeh
rbokeh copied to clipboard
R interface to Bokeh http://hafen.github.io/rbokeh/
I am making shiny app and using Rbokeh to display data. It is timeseries graph (x data is POSIXct). I do not know how to get jquery mouse click position...
This question pertains to the use of rbokeh within the context of a shiny application. Is there a way to programmatically fire an event from the R side that would...
`ly_bar` tries to be flexible in allowing one or two variables and determines which one is the categorical and which is the quantitative variable to be aggregated for each level...
For example: ``` r library(rbokeh) set.seed(123) x
For an RBokeh bar plot embedded in a Shiny app, `tool_tap()` doesn't respond to taps in RStudio or in Chrome, even though `tool_hover()` does respond to hover events. ``` library(shiny)...
hi hafen thanks for creating this `rbokeh` package, which is fascinating. I have 2 questions about `ly_bar`: 1: Is there any method to hide the legend in `ly_bar`? 2: How...
Hi, Could you clarify the behaviour below? Maybe I missed something... ``` r library(rbokeh) library(data.table) dat = data.table(x=1:3, y=c(1,1.5,1)+rep(0:3, each=3), group=rep(LETTERS[1:4], each=3), color=rep(c("blue","red"), each=3)) ## #1. The three following lines...
Hi there, I was trying to use ``` p % ly_points(1:10) rbokeh2html(p, file = "temp.html") ``` but when I open up the generated file in the browser I get the...
When both `glyph` and `lname` are specified in `ly_points`, the plot does not draw. These two calls work: ``` r figure(iris) %>% ly_points(Sepal.Length, Sepal.Width, glyph=Species) figure(iris) %>% ly_points(Sepal.Length, Sepal.Width, color=Species,...