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. geom_text() adds only text to the plot. geom_label() draws a rectangle behind the text, making it easier to read.
geom_label({
"mapping" = null,
"data" = null,
"stat" = "identity",
"position" = "identity",
"...",
"parse" = false,
"nudge_x" = 0,
"nudge_y" = 0,
label.padding = unit({0.25, "lines"}),
label.r = unit({0.15, "lines"}),
"label.size
" = 0.25,
"na.rm" = false,
"show.legend" = NA,
"inherit.aes" = true
})
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" = 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 NULL, the default, the data is inherited from the plot data as specified in the call to 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. | |
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. | |
... |
Other arguments passed on to | |
parse |
If TRUE, the labels will be parsed into expressions and displayed as described in ?plotmath. | |
nudge_x, 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. | |
label.padding |
Amount of padding around label. Defaults to 0.25 lines. | |
label.r |
Radius of rounded corners. Defaults to 0.15 lines. | |
label.size |
Size of label border, in mm. | |
na.rm |
If FALSE, the default, missing values are removed with a warning. If TRUE, missing values are silently removed. | |
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. | |
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(). | |
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 |
Note that when you resize
a plot, text labels stay the same size, even though the size of the plot area changes. This happens because the "width" and "height" of a text element are 0. Obviously, text labels do have height and width, but they are physical units, not data units. For the same reason, stacking and dodging text will not work by default, and axis limits are not automatically expanded to include all text.
geom_text() and geom_label() add labels for each row in the data, even if coordinates x, y are set to single values in the call to geom_label() or geom_text(). To add labels at specified points use annotate()
with annotate(geom = "text", ...) or annotate(geom = "label", ...).
To automatically position non-overlapping text labels see the ggrepel package.
geom_text() understands the following aesthetics (required aesthetics are in bold)
:
x
y
label
alpha
angle
color
family
fontface
group
hjust
lineheight
size
vjust
Learn more about setting these aesthetics in vignette("cxplot-specs").
var cxp = new cxplot("canvas1", mtcars, aes({"x": "wt", "y": "mpg", "label": "rownames(mtcars)"}));
cxp.geom_text();
// Labels with background
var cxp = new cxplot("canvas2", mtcars, aes({"x": "wt", "y": "mpg", "label": "rownames(mtcars)"}));
cxp.geom_label();
// Change size of the label
var cxp = new cxplot("canvas3", mtcars, aes({"x": "wt", "y": "mpg", "label": "rownames(mtcars)"}));
cxp.geom_text({"size": 6});
// Set aesthetics to fixed value
var cxp = new cxplot("canvas4", mtcars, aes({"x": "wt", "y": "mpg", "label": "rownames(mtcars)"}));
cxp.geom_point();
cxp.geom_text({"hjust": 0});
var cxp = new cxplot("canvas5", mtcars, aes({"x": "wt", "y": "mpg", "label": "rownames(mtcars)"}));
cxp.geom_point();
cxp.geom_text({"vjust": 0});
var cxp = new cxplot("canvas6", mtcars, aes({"x": "wt", "y": "mpg", "label": "rownames(mtcars)"}));
cxp.geom_point();
cxp.geom_text({"angle": 45});
// Add aesthetic mappings
var cxp = new cxplot("canvas7", mtcars, aes({"x": "wt", "y": "mpg", "label": "rownames(mtcars)"}));
cxp.geom_text(aes({"color": {"factor": "cyl"}}));
var cxp = new cxplot("canvas8", mtcars, aes({"x": "wt", "y": "mpg", "label": "rownames(mtcars)"}));
cxp.geom_label(aes({"fill": {"factor": "cyl"}, "color": "white", "fontface": "bold"}));
var df = [["supp", "dose", "len"], ["VC", "D0.5", 6.8], ["VC", "D1", 15.0], ["VC", "D2", 33], ["OJ", "D0.5", 4.2], ["OJ", "D1", 10.0], ["OJ", "D2", 29.5]];
var cxp = new cxplot("canvas9", df, aes("dose", "len", {"group": "supp"}));
cxp.geom_point();
cxp.geom_line();
cxp.geom_text(aes({"label": "len", "vjust": -0.5}));