create_base_figure.Rd
A function that generates a base figure, with optional guidelines, for a diagram.
Pre-packaged figure sizes, including...
'US letter' or '8.5 x 11' (inches);
'3.54 x 3.54' (inches);
'5 x 5' (inches);
'7.25 x 5' (inches).
Width (in inches) for the x-axis.
Height (in inches) for the y-axis.
For default specifications, indicates
whether figures should be in landscape
or
portrait
style.
A vector with the margins (in inches) for the bottom, left, top, and right, respectively.
Logical; if TRUE
, includes
guidelines when generating the figure.
Vector giving the major guideline positions (values must be between 0 and 1).
Vector giving the minor guideline
positions (values must be between 0 and 1).
If NULL
, no minor guidelines are included.
An adjustment controlling the position on the axes for the guideline numbers.
Logical; if TRUE
a new plotting
window is generated.
# Default (6 x 6 inches)
create_base_figure()
# No guidelines
create_base_figure( guidelines = FALSE )
# US letter size
create_base_figure( default = 'US letter' )
# US letter (Portrait)
create_base_figure( default = 'US letter', orientation = 'portrait' )