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
This works as expected:
tibble(i=1:3) %>% ggplot(aes(x=0, y=0)) + geom_text(aes(label=i)) + transition_time(i)
however, this fails:
tibble(i=1:3) %>% ggplot(aes(x=0, y=0)) + geom_text(aes(label=paste0("value: ", i))) + transition_time(i)
Is this a bug or how can I use intermediate values and modify them prior to showing them during a transition?
The text was updated successfully, but these errors were encountered:
This is currently not possible, unfortunately... I'm still muling over how to do this best
Sorry, something went wrong.
No branches or pull requests
This works as expected:
however, this fails:
Is this a bug or how can I use intermediate values and modify them prior to showing them during a transition?
The text was updated successfully, but these errors were encountered: