- design
A data.frame
containing labels
, column.factors
,
row.factors
and, if specified, colour.column
.
- labels
A character
giving the name of the column in
data
containing the labels to be plotted on the grid.
If labels
is NULL
, no labels are added.
- label.size
A numeric
giving the size of the labels.
- row.factors
A character
giving the names of the factor
s
(or numeric
s) in data
that index the rows of the
plot grid used to represent the design. If there is more than one name,
then facet_grid
is used to facet
the plot in the y
direction, based on all but the last name. The factor
corresponding to the last name will index the rows in each facet
.
- column.factors
A character
giving the names of the factor
s
(or numeric
s) in data
that index the columns of the
plot grid used to represent the design. If there is more than one name,
then facet_grid
is used to facet
the plot in the x
direction, based on all but the last name. The factor
corresponding to the last name will index the columns in each facet
.
- scales.free
When plots are facetted, a character
specifying whether scales
are shared across all facets (fixed
), or vary across rows
(free_x
), columns (free_y
), or both rows and columns
(the default, free
).
The free_x
, free_y
and free
options may not work when
the plot grid is indexed using numeric
s.
- reverse.x
A logical
which, if true, causes the order of values on the
x-axis to be reversed, the natural order being to increase from left to right.
- reverse.y
A logical
which, if true, causes the order of values on the
y-axis to be reversed, the natural order being to increase from bottom to top.
- x.axis.position
A character
giving the position of the x-axis; can be top
or bottom
.
- cellfillcolour.column
A character
giving the name of the column in
data
that is to be used to vary the colour the used to fill a cell.
- colour.values
A character
giving the name or names of the colours to be used
in filling the cell. If cellfillcolour.column is not NULL
then the
number of colours sepcified needs to match the number of unique values in
the cellfillcolour.column.
- cellalpha
A numeric
specifying the degree of transparency to be used in cell fill.
It is a ratio in which the denominator specifies the number of points (or
lines) that must be overplotted to give a solid cover.
- celllinetype
A numeric
or character
giving the type of line for the
cell border. An integer or name: 0 = blank, 1 = solid, 2 = dashed,
3 = dotted, 4 = dotdash, 5 = longdash, 6 = twodash. For more information
see vignette("ggplot2-specs")
.
- celllinesize
A numeric
specifying the size of the line in mm.
- celllinecolour
A character
giving the name of the colour to use for the cell
outline.
- cellheight
A numeric
specifying the height of a cell.
- cellwidth
A numeric
specifying the width of of a cell.
- xlab
Label
for the x-axis. By default it is the last name in the
column.factors
.
- ylab
Label
for the y-axis. By default it is the last name in the
row.factors
.
- title
Title for plot window. By default it is "Plot of labels".
- labeller
A function
for specifying the formatting of the strip labels of
the facet grids used when there is more than one row.factors
or
column.factors
. (See labellers
for ggplot2
.)
- title.size
A numeric
giving the size for all titles: xlab
,
ylab
and title
.
- axis.text.size
A numeric
giving the size for tick labels.
- blocksequence
A logical
that determines whether block numbers
are repetitions or sequences of block numbers.
- blockdefinition
A matrix
of block sizes:
if there is only one row, then the first element is interpreted as
the no. rows in each block and blocks with this number of rows are to be
repeated across the rows of the design.
if there is more than one row, then each row of the matrix specifies a block,
with the sequence of rows in the matrix specifying a corresponding
sequence of blocks down the rows of the design.
Similarly, a single value for a column specifies a repetition of blocks of that size
across the columns of the design, while several column values specifies a
sequence of blocks across the columns of the size specified.
- blocklinecolour
A character
string specifying the colour of the
block boundary.
See also the scale_colour_*
functions or Colour specification
under the
par
function.
- blocklinesize
A numeric
giving the width of the block boundary to be
plotted.
- printPlot
A logical
indicating whether to print the plot produced.
- ggplotFuncs
A list
, each element of which contains the
results of evaluating a ggplot
function.
It is created by calling the list
function with
a ggplot
function call for each element.
These functions are applied in creating the ggplot
object.
- ...
Other arguments that are passed down to the geom_text
call that plots the labels
.