rbokeh
rbokeh copied to clipboard
R interface to Bokeh http://hafen.github.io/rbokeh/
It looks like the rbokeh always plots the datetime in the UTC time zone. Could it be modified so that it can show in a local time zone as well?...
The **toolbar_location** works fine with one figure, however is ignored (and the default is used) with a grid setup. I'll see if can determine how to fix this, in the...
I want to be able to change the default datetime formatting on an axis. I've tried a number of approaches, borrowing what i understand from looking at the repository source...
First wanted to say thanks for putting this package together. rbokeh has a better API (IMO) than the python version. The python version of the bokeh library has a special...
In the **rbokeh/man-roxygen/ex-callback.R** shiny demo app, callbacks are set up to trigger a shiny output when the x or y range changes: ```R output$rbokeh % ly_points(x = x, y =...
Currently, `ly_bar` does not respect the order of a factor when plotting (the way that for instance `ggplot` is doing it). For example: ``` df
Hello, is there the capability to plot a horizontal boxplot? My code is: figure() %>% ly_boxplot(y=Species, x=Sepal.Length, data = iris) and i tried: figure() %>% ly_boxplot(y=Species, x=Sepal.Length, data = iris)...
I was able to successfully install R, but when I try to install R-essentials using conda at command prompt: ``` conda install -c r r-essentials ``` I get the following...
When specifying a global data source (e.g. `figure(..., data = x)`) and then adding a singleton layer that does not use that data source, the attributes are repeated as if...
I am trying to create an Rbokeh-powered shiny app where I keep on adding new data of different lengths on the same timeseries graph (x data is POSIXct). Since all...