I'm building a Shiny app that, after responding to user input, creates several plots. The catch is that I want the the plots to display: (1) all in the same renderPlot UI pane; (2) for 6-8 seconds each; and (3) while the code continues to run in the background (creating the subsequent plots). So if there are 4 plots to display, the user might be looking at plot number 3 while plot number 4 is being created (and so on and so forth). The effect I'm going for is kind of like a timed slide show.
Is there a package or framework for this sort of thing? If not, how would I achieve this effect? Any guidance would be greatly appreciated.