You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(ggplot2)
library(purrr)
economics_list<- split(economics_long, economics_long$variable)
# In the RStudio IDE: all images get rendered to the Plots pane, and the user# can navigate back and forth between the rendered images.## In Positron: only the last image gets rendered, it's impossible to navigate# to previous ones.#economics_list|>
imap(
\(df, nm) df|>
ggplot(aes(date, value)) +
geom_line() +
labs(title=nm)
)
It seems like only some of the plots will actually render?
Screen.Recording.2023-06-12.at.9.49.39.AM.mov
The text was updated successfully, but these errors were encountered: