geom_text {ggplot2} R Documentation

Text

Description


Text geoms are useful for labeling plots. They can be used by themselves
as scatterplots or in combination with other geoms, for example, for
labeling points or for annotating the height of bars. geomtext() adds
only text to the plot. geom
label() draws a rectangle behind the text,
making it easier to read.

Usage

geom_text(
    mapping = NULL,
    data = NULL,
    stat = "identity",
    position = "identity",
    parse = FALSE,
    nudge.x = 0,
    nudge.y = 0,
    check.overlap = FALSE,
    na.rm = FALSE,
    show.legend = FALSE,
    inherit.aes = TRUE,
    color = "steelblue",
    which = NULL,
    alpha = 1,
    size = NULL,
    ... = NULL);

Arguments

mapping

Set of aesthetic mappings created by aes() or aes_(). If specified and inherit.aes = TRUE (the default), it is combined with the default mapping at the top level of the plot. You must supply mapping if there is no plot mapping. [as ggplotReader]

data

The data to be displayed in this layer. There are three options: If NULL, the Default, the data Is inherited from the plot data As specified In the Call To ggplot(). A data.frame, Or other Object, will override the plot data. All objects will be fortified To produce a data frame. See fortify() For which variables will be created. A Function will be called With a Single argument, the plot data. The Return value must be a data.frame, And will be used As the layer data. A Function can be created from a formula (e.g. ~ head(.x, 10)).

stat

The statistical transformation to use on the data for this layer, as a string. [as string]

position

Position adjustment, either as a string, or the result of a call to a position adjustment function. Cannot be jointy specified with nudge_x or nudge_y. [as string]

parse

If TRUE, the labels will be parsed into expressions and displayed as described in ?plotmath. [as boolean]

nudge.x

Horizontal and vertical adjustment to nudge labels by. Useful for offsetting text from points, particularly on discrete scales. Cannot be jointly specified with position. [as double]

nudge.y

Horizontal and vertical adjustment to nudge labels by. Useful for offsetting text from points, particularly on discrete scales. Cannot be jointly specified with position. [as double]

check.overlap

If TRUE, text that overlaps previous text in the same layer will not be plotted. check_overlap happens at draw time and in the order of the data. Therefore data should be arranged by the label column before calling geomtext(). Note that this argument is not supported by geomlabel(). [as boolean]

na.rm

If False, the Default, missing values are removed With a warning. If True, missing values are silently removed. [as boolean]

show.legend

logical. Should this layer be included in the legends? NA, the default, includes if any aesthetics are mapped. FALSE never includes, and TRUE always includes. It can also be a named logical vector to finely select the aesthetics to display. [as boolean]

inherit.aes

If False, Overrides the Default aesthetics, rather than combining With them. This Is most useful For helper functions that define both data And aesthetics And shouldn't inherit behaviour from the default plot specification, e.g. borders(). [as boolean]

color

-

args

Other arguments passed On To layer(). These are often aesthetics, used To Set an aesthetic To a fixed value, Like colour = "red" Or size = 3. They may also be parameters To the paired geom/stat. [as list]

env

[as Environment]

Details

Authors

SMRUCC genomics institute

Value

this function returns data object of type ggplotLayer.

clr value class

Examples


[Package ggplot2 version 1.0.0.0 Index]