Learn R Programming

⚠️There's a newer version (0.3.5) of this package.Take me there.

rvg package

rvg is providing two graphics devices that produces Vector Graphics outputs in DrawingML format for Microsoft PowerPoint with dml_pptx and for Microsoft Excel with dml_xlsx. Theses formats let users edit the graphic elements (editable graphics) within PowerPoint or Excel and have a very good rendering.

These raw XML outputs cannot be used as is. Functions dml and ph_with() have to be used with package officer to add vector graphics in PowerPoint documents (dml function is a simple wrapper to mark the plot instructions as Vector Graphics instructions).

library(rvg)
library(ggplot2)
library(officer)

my_vec_graph <- dml(code = barplot(1:5, col = 2:6))

doc <- read_pptx()
doc <- add_slide(doc, layout = "Title and Content", master = "Office Theme")
doc <- ph_with(doc, my_vec_graph, location = ph_location_fullsize() )
print(doc, target = "my_plot.pptx")

Function xl_add_vg() is the equivalent for Excel workbooks.

doc <- read_xlsx()
doc <- xl_add_vg(doc, sheet = "Feuil1", code = print(gg), 
  width = 6, height = 6, left = 1, top = 2 )
print(doc, target = "vg.xlsx")

By default, theses graphics are editable, element edition can be disabled with option editable = FALSE. For more details, read officer article graphics.

Installation

You can get the development version from GitHub:

devtools::install_github("davidgohel/rvg")

Install the CRAN version:

install.packages("rvg")

Copy Link

Version

Install

install.packages('rvg')

Monthly Downloads

19,394

Version

0.2.5

License

GPL-3

Maintainer

David Gohel

Last Published

June 30th, 2020

Functions in rvg (0.2.5)

dml_pptx

DrawingML graphic device for Microsoft PowerPoint
dml

Wrap plot instructions for DrawingML plotting in Powerpoint
rvg-defunct

Defunct Functions in Package rvg
xl_add_vg

add a plot output as vector graphics into an Excel object
ph_with.dml

add a plot output as vector graphics into a PowerPoint object
dml_xlsx

DrawingML graphic device for Microsoft Excel