We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
view_step_manual()
I think the combination of wrap = FALSE and pause_first = TRUE creates an issue with the first frame of the animation.
wrap = FALSE
pause_first = TRUE
Has also happened using view_zoom_manual()
view_zoom_manual()
The animation here is supposed to start with x-limits of 1-7 and then zoom in to the top section of the x-axis (x-limits of 4-7).
ggplot(iris, aes(Petal.Length, Petal.Width, colour = Species)) + geom_point() + view_step_manual(wrap = FALSE, pause_first = TRUE, xmin = c(1, 4), xmax = c(7, 7), ymin = 0, ymax = 2.5 )
I've attached the first frame of the animation: limits are 4-7.
And md5sums below show first frame is identical to final, rather than the the subsequent frames.
r$> md5s <- frame_vars() |> dplyr::pull(frame_source) |> purrr::map_chr(tools::md5sum) r$> head(md5s) [1] "8641919fb31b0bc4fe0b76b47210ae61" "d696c68c1add19d8e185beaaed3eff32" "d696c68c1add19d8e185beaaed3eff32" [4] "d696c68c1add19d8e185beaaed3eff32" "d696c68c1add19d8e185beaaed3eff32" "d696c68c1add19d8e185beaaed3eff32" r$> tail(md5s) [1] "8641919fb31b0bc4fe0b76b47210ae61" "8641919fb31b0bc4fe0b76b47210ae61" "8641919fb31b0bc4fe0b76b47210ae61" [4] "8641919fb31b0bc4fe0b76b47210ae61" "8641919fb31b0bc4fe0b76b47210ae61" "8641919fb31b0bc4fe0b76b47210ae61"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think the combination of
wrap = FALSE
andpause_first = TRUE
creates an issue with the first frame of the animation.Has also happened using
view_zoom_manual()
The animation here is supposed to start with x-limits of 1-7 and then zoom in to the top section of the x-axis (x-limits of 4-7).
I've attached the first frame of the animation: limits are 4-7.
And md5sums below show first frame is identical to final, rather than the the subsequent frames.
The text was updated successfully, but these errors were encountered: