R6 class defining properties for saving a ggplot
object
Super class
tlf::ExportConfiguration
-> ExportConfiguration
Public fields
name
character defining the name of the file to be saved (without extension)
path
Path of the directory to save plot to: path and filename are combined to create the fully qualified file name. Defaults to the working directory.
format
character defining the format of the file to be saved
width
numeric values defining the width in
units
of the plot dimensions after savingheight
numeric values defining the height in
units
of the plot dimensions after saving. Only used ifheightPerRow
isNULL
.units
character defining the unit of the saving dimension
dpi
(dots per inch) numeric value defining plot resolution
Active bindings
name
character defining the name of the file to be saved (without extension)
path
Path of the directory to save plot to: path and filename are combined to create the fully qualified file name. Defaults to the working directory.
format
character defining the format of the file to be saved
width
numeric values defining the width in
units
of the plot dimensions after savingheight
numeric values defining the height in
units
of the plot dimensions after saving. Only used ifheightPerRow
isNULL
.units
character defining the unit of the saving dimension
dpi
(dots per inch) numeric value defining plot resolution
heightPerRow
The height of the plot dimensions for a row in a multi panel plot. The final height of the figure will be 'heightPerRow' times the number of rows. If
NULL
(default), value used inheight
is used. If notNULL
, this value always overrides theheight
property.