| par {base} | R Documentation |
Set or Query Graphical Parameters
Description
par can be used to set or query graphical parameters.
Parameters can be set by specifying them as arguments to par in
tag = value form, or by passing them as a list of tagged values.
Usage
par(..., no.readonly = FALSE)
<highlevel plot> (......, <tag> = <value>)
Arguments
no.readonly |
logical; if |
adj |
The value of |
ann |
If set to |
ask |
logical. If |
bg |
The color to be used for the background of plots. A description of how colors are specified is given below. |
bty |
A character string which determined the type of box which
is drawn about plots. If |
cex |
A numerical value giving the amount by which plotting text and symbols should be scaled relative to the default. |
cex.axis |
The magnification to be used for axis annotation relative to the current. |
cex.lab |
The magnification to be used for x and y labels relative to the current. |
cex.main |
The magnification to be used for main titles relative to the current. |
cex.sub |
The magnification to be used for sub-titles relative to the current. |
cin |
R.O.. |
col |
A specification for the default plotting color. A description of how colors are specified is given below. |
col.axis |
The color to be used for axis annotation. |
col.lab |
The color to be used for x and y labels. |
col.main |
The color to be used for plot main titles. |
col.sub |
The color to be used for plot sub-titles. |
cra |
R.O.. |
crt |
A numerical value specifying (in degrees) how strings should be rotated. It is unwise to expect values other than multiples of 90 to work. |
csi |
R.O.. The height of (default sized) characters in inches. |
din |
R.O.. The device dimensions in inches. |
err |
(Unimplemented) The degree of error reporting desired. |
fg |
The color to be used for the foreground of plots. This is the default color is used for things like axes and boxes around plots. A description of how colors are specified is given below. |
fig |
A numerical vector of the form |
fin |
A numerical vector of the form |
font |
An integer which specifies which font to use for text. If possible, device drivers arrange so that 1 corresponds to plain text, 2 to bold face, 3 to italic and 4 to bold italic. |
font.axis |
The font to be used for axis annotation. |
font.lab |
The font to be used for x and y labels. |
font.main |
The font to be used for plot main titles. |
font.sub |
The font to be used for plot sub-titles. |
gamma |
the gamma correction, see |
lab |
A numerical vector of the form |
las |
numeric in {0,1,2}; the style of axis labels. 0 = always parallel to the axis [default], 1 = always horizontal, 2 = always perpendicular to the axis, 3 = always vertical. |
lty |
The line type.
Line types can either be specified as an integer (1=solid, 2=dashed,
3=dotted 4=dotdashed) or as one of the character strings
|
lwd |
The line width, a positive numerical, defaulting to
|
mai |
A numerical vector of the form |
mar |
A numerical vector of the form |
mex |
|
mfcol, mfrow |
A vector of the form Consider the alternatives, |
mfg |
A numerical vector of the form |
mgp |
The margin line for the axis title, axis labels and axis
line. The default is |
mkh |
The height in inches of symbols to be drawn when the value
of |
new |
logical, defaulting to |
oma |
A vector of the form |
omd |
A vector of the form |
omi |
A vector of the form |
pch |
Either an integer specifying a symbol or a single character to be used as the default in plotting. |
pin |
The width and height of the current plot in inches. |
plt |
A vector of the form |
ps |
integer; the pointsize of text and symbols. |
pty |
A character specifying the type of plot region to be used;
|
smo |
(Unimplemented) a value which indicates how smooth circles and circular arc should be. |
srt |
The string rotation in degrees. Causes |
tck |
The length of tick marks as a fraction of the smaller of
the width or height of the plotting region.
If |
tcl |
The length of tick marks as a fraction of the height
of a line of text. The default value is |
tmag |
A number specifying the enlargement of text of the main title relative to the other annotating text of the plot. |
type |
character; the default plot type desired, see
|
usr |
A vector of the form |
xaxp |
A vector of the form |
xaxs |
(Unimplemented) The style of axis interval calculation to be used for the x-axis. |
xaxt |
A character which specifies the axis type.
Specifying |
xlog |
R.O.. A logical value (see |
xpd |
A logical value or NA.
If |
yaxp |
A vector of the form |
yaxs |
(Unimplemented) The style of axis interval calculation to be used for the y-axis. |
yaxt |
A character which specifies the axis type.
Specifying |
ylog |
R.O.. A logical value (see |
Details
The previous values are returned in an
invisible tagged list. Such a list can be passed as an argument to
par to restore the parameter values.
Parameters are queried by giving vectors of character strings to
par. In this case, the values are returned in a tagged list.
par() (no arguments) or par(no.readonly=TRUE) is used to
get all the graphical parameters (as named list).
Their names are currently taken from the variable .Pars.
.Pars.readonly contains the names of the par arguments
which are readonly.
R.O. Arguments := Read-only arguments: These may only be used in queries, i.e., they do not set anything.
All but these R.O. and the following low-level
arguments can be set as well in high-level and mid-level plot
functions, such as plot, points,
lines, axis, title,
text, mtext:
-
"ask" -
"fig","fin" -
"mai","mar","mex" -
"mfrow","mfcol","mfg" -
"new" -
"oma","omd","omi" -
"pin","plt","ps","pty" -
"usr" -
"xlog","ylog"
Color Specification
Colors can be specified in several
different ways. The simplest way is with a character string giving
the color name (e.g., "red"). A list of the possible colors
can be obtained with the function colors.
Alternatively, colors can be specified directly in terms of there RGB
components with a string of the form "#RRGGBB" where each of
the pairs RR, GG, BB consist of two hexadecimal
digits giving a value in the range 00 to FF. Colors can
also be specified by giving an index into a small table of colors.
This provides compatibility with S.
The functions rgb, hsv, gray and rainbow
provide additional ways of generating colors.
Line Type Specification
Line types can either be specified by
giving an index into a small built in table of line types (1=solid,
2=dashed, 3=dotted) or directly as the lengths of on/off stretches of
line. This is done with a string of up to eight characters which give
the lengths in consecutive positions in the string. For example, the
string "33" specifies three pixels on followed by three off and
"3313" specifies three pixels on followed by three off followed
by one on and finally three off.
See Also
plot.default for some high-level plotting parameters;
colors, gray, rainbow,
rgb;
options for other setup parameters;
graphic devices x11, postscript and
setting up device regions by layout and
split.screen.
Examples
op <- par(mfrow = c(2, 2), # 2 x 2 pictures on one plot
pty = "s") # square plotting region, independent of device size
## At end of plotting, reset to previous settings:
par(op)
par("ylog")# FALSE
plot(1:12,log="y")
par("ylog")# TRUE
( nr.prof <-
c(prof.pilots=16,lawyers=11,farmers=10,salesmen=9,physicians=9,
mechanics=6,policemen=6,managers=6,engineers=5,teachers=4,
housewives=3,students=3,armed.forces=1))
par(las=3)
barplot(rbind(nr.prof)) # R 0.63.2: shows alignment problem
par(las=0)# reset to default
ex <- function() {
old.par <- par(no.readonly = TRUE)# all par settings which could be changed.
on.exit(par(old.par))
## ...
## ... do lots of par(..) settings and plots
## ...
invisible() #-- now, par(old.par) will be executed
}
ex()