svgstring {svglite} | R Documentation |
This is a variation on svglite
that makes it easy to access
the current value as a string.
svgstring( width = 10, height = 8, bg = "white", pointsize = 12, standalone = TRUE, system_fonts = list(), user_fonts = list() )
width |
Height and width in inches. |
height |
Height and width in inches. |
bg |
Default background color for the plot (defaults to "white"). |
pointsize |
Default point size. |
standalone |
Produce a standalone svg file? If |
system_fonts |
Named list of font names to be aliased with
fonts installed on your system. If unspecified, the R default
families |
user_fonts |
Named list of fonts to be aliased with font files
provided by the user rather than fonts properly installed on the
system. The aliases can be fonts from the fontquiver package,
strings containing a path to a font file, or a list containing
|
See svglite()
documentation for information about
specifying fonts.
A function with no arguments: call the function to get the current value of the string.
s <- svgstring(); s() plot.new(); s(); text(0.5, 0.5, "Hi!"); s() dev.off() s <- svgstring() plot(rnorm(5), rnorm(5)) s() dev.off()