Easy way to copy paste base graph from R Studio into word document

ms-word, r

Solution

As @Roland suggested:

Export -> Copy Plot to Clipboard (window with plot will pop-out) -> Metafile -> Copy Plot -> Paste to MSWord.

This seems a lot of clicks to me, rather as @user2633645 suggested save all plots as `png` then insert them in MSWord in one go.

Problem

I need to copy paste R graphs into MS Word. ``` rando<-rnorm(1:100) plot(rando) ``` when I copy the .png graph from R Studio into Word I get a negative space version of the graph: Is there a cleaner/easier way to do this? I would be happy to use pdf or something else to present the graph.

Original source