Just start with Shiny. I ask you: is it possible to add single lines characterized by interception and tilt to the ggvis graph ?
For example, with ggplot2 using geom_abline.
The code I'm interested in for debat is in the server.R file located at https://github.com/wch/movies and links to this example http://shiny.rstudio.com/gallery/movie-explorer.html .
This is a way to draw a line.
x_min <- 0
x_max <- 10
m <- 1
b <- 5
x <- c(x_min, x_max)
y <- m*x + b
df <- data.frame(x = x, y = y)
df %>% ggvis(x = ~x, y = ~y) %>% layer_lines()
but I'm interested in drawing it on top of the existing ggvis graph linked above.
I have to add the code here:
movies %>%
ggvis(x = xvar, y = yvar) %>%
layer_points(size := 50, size.hover := 200,
fillOpacity := 0.2, fillOpacity.hover := 0.5,
stroke = ~has_oscar, key := ~ID) %>%
add_tooltip(movie_tooltip, "hover") %>%
add_axis("x", title = xvar_name) %>%
add_axis("y", title = yvar_name) %>%
add_legend("stroke", title = "Won Oscar", values = c("Yes", "No")) %>%
scale_nominal("stroke", domain = c("Yes", "No"),
range = c("orange", "#aaa")) %>%
set_options(width = 500, height = 500)
})
source
share