Hi, I want to export the plots into images and store them for presentation purpose. I used below code -
> png("annual sales.png")
> ggplot(economics, aes(date, unemploy)) + geom_ribbon(aes(ymin = unemploy,ymax = unemploy +900), fill = "blue")
But it is not showing any images. What to do?