I want to make my animations for a powerpoint that I am presenting and so am using gganimate for my data. However, I would like the next set of data to only cycle in when I click as I will be speaking over the data, is this possible? (in transition_states?)
geom_point() +
labs(title = "{closest_state}") +
transition_states(Species, transition_length = 3, state_length = 1)
For example, with this data set above - can I get each Species' data to only cycle in upon clicking? If this is not possible, is there a way that I can control the time between different species cycling in?
Let me know your thoughts.
Best wishes!