Downloading plots from R

Load packages, data

Make a plot

ggplot(data = diamonds, 
       mapping = aes(x = carat, 
                     y = price, 
                     color = cut)) +
  geom_point() + 
  theme_minimal() # add a theme of your choice!

Export to add to your presentation.