Is the save to pdf button under plots>internally calling the pdf() function? Thus, would it be equivalent to this chunk of code?:
simple_plot %>% pdf(file = "plots/simple_plot.pdf",
width = 6, # The width of the plot in inches
height = 8) # The height of the plot in inches
dev.off()
I would like to automate my saving to PDF process. I am also confused if using Cairo PDF is a better option.