layer_f: Create a new layering function.

Description Usage Arguments Examples

View source: R/layer.R

Description

The layer function is run, and then the state before the code was run is restored - this allows layers to be effectively isolated from the rest of the plot.

Usage

1
layer_f(vis, fun)

Arguments

vis

The ggvis visualisation to modify.

fun

A function that takes a single argument, the current visualisation as input, and returns a modified visualisation.

Examples

1
2
3
4
5
mtcars %>% ggvis(~mpg) %>%
  layer_f(function(v) {
     v %>% compute_bin(~mpg) %>% layer_points(x = ~x_, y = ~count_)
  }) %>%
  layer_points(y = ~wt)

rpruim/ggvis2 documentation built on May 28, 2019, 2:34 a.m.