I wonder how to redirect R graphs to MS Word? Like sink() redirect the R output to any file but not the graphs. I tried R2Wd but sometimes it doesn't work properly. Any comment and help will be highly appreciated. Thanks
|
|
|||
|
To answer your direct question, the best way to get the results of R scripts and plots into word is probably via some form of Sweave. Look up odfweave to send R output to a LibreOffice file that can then be converted to word, or even opened directly in Word if you have the right plugin. To create plots that can be editable (i.e you can alter the look of plots, move the legend etc) I would recommend saving the plot to an svg format (scalable vector graphic) that you can then edit using the excellent free vector graphics app inkscape. For instance, if I create my ggplot2 graph as an object
You can use the Cairo package, which allows creation of svg files, I can then edit these in Inkscape.
For more info read this previous question that has more good answers Create Editable plots from R Also, you can follow this advice from Hadley, and save the actual ggplot2 object, then load it later and modify it
|
|||||||||
|
|
To get sink() like behavior with MSword look at the Graphs are not sent automatically since you may be adding to them, but once you know you are finished with the graph you can use If you know what you want to do ahead of time then |
|||
|
|
jpeg()) and PDF (pdf()), among others. Can you clarify what doesn't work about R2Wd? – Iterator Aug 27 '11 at 5:45ggplot2), you should consider (a) contacting the package maintainers (trymaintainer("R2Wd")) and (b) setting up a reproducible example (which you could include in a edited version of this question ...) Are you aware of cran.r-project.org/doc/FAQ/… ? – Ben Bolker Aug 27 '11 at 18:55