If you would like to export R graphs to Powerpoint you can also use the wrapper package export
built on top of officer
that just came out on CRAN, see
https://cran.r-project.org/web/packages/export/index.html and for demo
https://github.com/tomwenseleers/export
Typical syntax is very easy and works for either base R, ggplot2 or lattice graphs, e.g. for a ggplot2 plot (but syntax is the same for base R plot, just call it after you made the plot):
install.packages("export")
library(export)
library(ggplot2)
qplot(Sepal.Length, Petal.Length, data = iris, color = Species,
size = Petal.Width, alpha = I(0.7))
graph2ppt(file="ggplot2_plot.pptx", width=6, height=5)
You can also use it to export to Word, Excel, Latex or HTML and you can also use it to export statistical output of various R stats objects.