我在R& amp;我想在我的情节中定义一些格式问题,但我还没有。
答案 0 :(得分:3)
您可以使用ReporteRs
包将图表导出到Word。请参阅以下示例 - 它将生成一个 .docx 文件,其中包含具有已定义大小的矢量图形格式(高质量)的可编辑图形。
library( ggplot2 )
library( ReporteRs )
doc = docx( )
myplot = qplot(Sepal.Length, Petal.Length, data = iris
, color = Species, size = Petal.Width, alpha = I(0.7) )
doc = addPlot( doc = doc, fun = print, x = myplot,
vector.graphic = T, # vector graphic instruction
fontname = "Times New Roman", # font specification
width = 4, height = 4 #dim. are in inches
)
writeDoc( doc, file = "test.docx" )