geom_isolines_text.Rd
geom_isolines_text()
renders numerical text labels at
isolines along row or column axes.
geom_isolines_text( mapping = NULL, data = NULL, stat = "identity", position = "identity", subset = NULL, by = NULL, num = NULL, label_dodge = 0.1, ..., parse = FALSE, check_overlap = FALSE, na.rm = FALSE, show.legend = NA, inherit.aes = TRUE )
mapping | Set of aesthetic mappings created by |
---|---|
data | The data to be displayed in this layer. There are three options: If A A |
stat | The statistical transformation to use on the data for this layer, as a string. |
position | Position adjustment, either as a string, or the result of a call to a position adjustment function. |
subset | Indices or logical vector of rows or columns for which to render elements. |
by | Intervals between elements or number of elements; specify only one. |
num | Intervals between elements or number of elements; specify only one. |
label_dodge | Numeric; the orthogonal distance of the text from the isoline, in the direction of the row or column axis, as a proportion of the minimum of the plot width and height. |
... | Additional arguments passed to |
parse | If |
check_overlap | If |
na.rm | Passed to |
show.legend | logical. Should this layer be included in the legends?
|
inherit.aes | If |
ggbiplot()
uses ggplot2::fortify()
internally to produce a single data
frame with a .matrix
column distinguishing the subjects ("rows"
) and
variables ("cols"
). The stat layers stat_rows()
and stat_cols()
simply
filter the data frame to one of these two.
The geom layers geom_rows_*()
and geom_cols_*()
call the corresponding
stat in order to render plot elements for the corresponding factor matrix.
geom_dims_*()
selects a default matrix based on common practice, e.g.
points for rows and arrows for columns.
geom_isolines_text()
understands the following aesthetics (required
aesthetics are in bold):
x
y
alpha
angle
colour
family
fontface
hjust
lineheight
size
vjust
group
center
(for un-scaling)
scale
(for un-scaling)
Other geom layers:
geom_axis_label()
,
geom_axis_text()
,
geom_axis_ticks()
,
geom_axis()
,
geom_isolines()
,
geom_lineranges()
,
geom_origin()
,
geom_text_radiate()
,
geom_unit_circle()
,
geom_vector()