Skip to content

Instantly share code, notes, and snippets.

@pbiecek
Created March 26, 2015 08:32
Show Gist options
  • Select an option

  • Save pbiecek/b3d42d90f66cbb7f4912 to your computer and use it in GitHub Desktop.

Select an option

Save pbiecek/b3d42d90f66cbb7f4912 to your computer and use it in GitHub Desktop.
library(ggvis)
df %>% ggvis(x =~ x, y =~ y) %>%
layer_points(fill = ~gr, size.hover := 200,
fillOpacity := 0.9,
fillOpacity.hover := 0.95) %>%
add_axis("x", title = group1) %>%
add_axis("y", title = group2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment