view_follow | R Documentation |
This view will set the panels to include the data present in the frame.
view_follow(
fixed_x = FALSE,
fixed_y = FALSE,
exclude_layer = NULL,
aspect_ratio = 1
)
fixed_x , fixed_y |
Either a logical indicating if the dimension should
not be modified by the view, or a numeric vector giving the lower and upper
bounds of the dimension. For the latter, an |
exclude_layer |
Integer vector of layer indices that should be ignored when calculating the view |
aspect_ratio |
If the coord is fixed, ensure that the view matches the
given aspect ratio. Will override anything given in |
Other views:
view_static()
,
view_step()
,
view_zoom()
anim <- ggplot(iris, aes(Sepal.Length, Sepal.Width)) +
geom_point() +
labs(title = "{closest_state}") +
transition_states(Species, transition_length = 4, state_length = 1) +
view_follow()
# Fixing a dimension can be done in general
anim1 <- ggplot(iris, aes(Sepal.Length, Sepal.Width)) +
geom_point() +
labs(title = "{closest_state}") +
transition_states(Species, transition_length = 4, state_length = 1) +
view_follow(fixed_x = TRUE)
# ...or just for one side of the range
anim1 <- ggplot(iris, aes(Sepal.Length, Sepal.Width)) +
geom_point() +
labs(title = "{closest_state}") +
transition_states(Species, transition_length = 4, state_length = 1) +
view_follow(fixed_x = c(4, NA), fixed_y = c(2, NA))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.