pd_base_figure.Rd
A function that generates a base figure, with optional guidelines, for a diagram.
A character string used to specify 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).
A numeric value, the width of the figure in inches.
A numeric value, the height of the figure in inches.
A character string, indicates
whether figures should be in 'landscape'
or
'portrait'
style.
A numeric vector of 4 values, specifying in inches the margins for the bottom, left, top, and right, respectively.
A logical value, if TRUE
includes
guidelines when generating the figure.
A numeric vector giving the major guideline positions (values must be between 0 and 1).
A numeric vector giving the minor guideline
positions (values must be between 0 and 1).
If NULL
, no minor guidelines are included.
A numeric value, the adjustment controlling the position on the axes for the guideline numbers.
A logical value, if TRUE
a new plotting
window is generated.
if (FALSE) {
# Default (6 x 6 inches)
pd_base_figure()
# No guidelines
pd_base_figure( guidelines = FALSE )
# US letter size
pd_base_figure( default = 'US letter' )
# US letter (Portrait)
pd_base_figure( default = 'US letter', orientation = 'portrait' )
}