Results 16 comments of Atrebas

OK. Thank you for your answer.

FYI, reproduced with the following setup: ``` r sessionInfo() R version 3.1.2 (2014-10-31) Platform: x86_64-w64-mingw32/x64 (64-bit) locale: [1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252 [3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C [5] LC_TIME=English_United States.1252 attached...

Question 1: You have to pass the order explicitly in xlim. See #206. ``` library(rbokeh) # total yield per variety figure(xlim = levels(lattice::barley$variety)) %>% ly_bar(variety, yield, data = lattice::barley, hover...

I thought my answer would be enough to guide you. Instead of using the levels as above, you just have to provide the order you want. How to compute this...

Something like this? ```r library(rbokeh) p % ly_points(x = 1, y = 1) %>% ly_abline(v = 1, color = "red") %>% ly_abline(h = 1, color = "blue") p ```