Create new objects: Reverse assign

Can go the other way ->, eg graphs:

library(ggplot2)
ggplot(mtcars, aes(wt, hp)) +
  geom_point() -> plot01

plot01