I've been trying to dig myself out from under this one for a while but I'm hoping @hafen can spot this out immediately.
I'm working with the dev version, and specifying both color and glyph is throwing an error. I know it's a WIP but I figured feedback early in the process could be helpful
library(rbokeh)
ir <- transform(iris, group = sample(c("a", "b"), nrow(iris), replace=TRUE))
## works
figure(ir) %>% ly_points(Sepal.Length, Sepal.Width, color=Species)
## works
figure(ir) %>% ly_points(Sepal.Length, Sepal.Width, glyph=group)
## breaks
figure(ir) %>% ly_points(Sepal.Length, Sepal.Width, glyph=group, color=Species)
## Error in if (glyph == "Image") { : argument is of length zero
I've been trying to dig myself out from under this one for a while but I'm hoping @hafen can spot this out immediately.
I'm working with the dev version, and specifying both color and glyph is throwing an error. I know it's a WIP but I figured feedback early in the process could be helpful