刚刚开始使用 Shiny。我问你:是否可以在ggvis图中添加以截距和斜率为特征的单线?
例如使用 geom_abline 的 ggplot2。
我有兴趣讨论的代码位于位于https://github.com/wch/movies的 server.R 文件中,并参考此示例http://shiny.rstudio.com/gallery/movie-explorer。 .html _
这是一种画线的方法
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()
但我有兴趣将它绘制在现有的 ggvis 图上,即上面的链接。
我应该在这里添加一些代码:
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)
})