You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.
The following works correctly for me: rbokeh::ly_points(figure(), a, b, data.frame(a = c(1,2), b = c(3,4)), hover = "@a and @b")
Curiously this does not: rbokeh::ly_points(figure(), a, ab, data.frame(a = c(1,2), ab = c(3,4)), hover = "@a and @ab")
The value shows up as '???'
I suspect that names collide when one of them starts with another as a substring.
R 3.3.3, rbokeh_0.5.0 rj_2.1.0-11, Firefox 54.0 Ubuntu 16.04
The text was updated successfully, but these errors were encountered:
dseynaev
changed the title
Scatterpoint hover sometimes does not display values for certain columns
Scatterplot hover sometimes does not display values for certain columns
Jun 22, 2017
This also seems to work (changed the order of appearance in the hover template): rbokeh::ly_points(figure(), a, ab, data.frame(a = c(1,2), ab = c(3,4)), hover = "@ab and @a")
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The following works correctly for me:
rbokeh::ly_points(figure(), a, b, data.frame(a = c(1,2), b = c(3,4)), hover = "@a and @b")
Curiously this does not:
rbokeh::ly_points(figure(), a, ab, data.frame(a = c(1,2), ab = c(3,4)), hover = "@a and @ab")
The value shows up as '???'
I suspect that names collide when one of them starts with another as a substring.
R 3.3.3, rbokeh_0.5.0 rj_2.1.0-11, Firefox 54.0 Ubuntu 16.04
The text was updated successfully, but these errors were encountered: