Title: | Fit Text Inside a Box in 'ggplot2' |
---|---|
Description: | A 'ggplot2' extension to fit text into a box by growing, shrinking or wrapping the text. |
Authors: | David Wilkins [aut, cre], Brady Johnston [ctb] |
Maintainer: | David Wilkins <[email protected]> |
License: | GPL-2 |
Version: | 0.10.2 |
Built: | 2024-11-02 03:12:19 UTC |
Source: | https://github.com/wilkox/ggfittext |
Some craft and their altitudes
altitudes
altitudes
A data frame with 4 rows and 2 variables:
the name of the craft
the craft's normal cruising altitude in metres
Some animals and their attributes
animals
animals
A data frame with 6 rows and 4 variables:
the name of the animal
the type of animal
whether the animal can fly
the average mass of the animal in grams
Some animals and their attributes, in rich text
animals_rich
animals_rich
A data frame with 6 rows and 4 variables:
the name of the animal
, in rich text
the type of animal
whether the animal can fly
the average mass of the animal in grams
The compositions of some espresso-based beverages
beverages
beverages
A data frame with 6 rows and 3 variables:
the name of the beverage
the ingredient
the proportion of a cup to fill with the ingredient
The compositions of some espresso-based beverages, in rich text
beverages_rich
beverages_rich
A data frame with 6 rows and 3 variables:
the name of the beverage
the ingredient, in rich text
the proportion of a cup to fill with the ingredient
geom_fit_text()
shrinks, grows and wraps text to fit inside a defined
box.
geom_bar_text()
is a convenience wrapper around geom_fit_text()
for
labelling bar plots generated with geom_col()
and geom_bar()
.
geom_bar_text( mapping = NULL, data = NULL, stat = "identity", position = "identity", na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, padding.x = grid::unit(1, "mm"), padding.y = grid::unit(1, "mm"), min.size = 8, place = NULL, outside = NULL, grow = FALSE, reflow = FALSE, hjust = NULL, vjust = NULL, fullheight = NULL, width = NULL, height = NULL, formatter = NULL, contrast = NULL, rich = FALSE, ... ) geom_fit_text( mapping = NULL, data = NULL, stat = "identity", position = "identity", na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, padding.x = grid::unit(1, "mm"), padding.y = grid::unit(1, "mm"), min.size = 4, place = "centre", outside = FALSE, grow = FALSE, reflow = FALSE, hjust = NULL, vjust = NULL, fullheight = NULL, width = NULL, height = NULL, formatter = NULL, contrast = FALSE, flip = FALSE, rich = FALSE, ... )
geom_bar_text( mapping = NULL, data = NULL, stat = "identity", position = "identity", na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, padding.x = grid::unit(1, "mm"), padding.y = grid::unit(1, "mm"), min.size = 8, place = NULL, outside = NULL, grow = FALSE, reflow = FALSE, hjust = NULL, vjust = NULL, fullheight = NULL, width = NULL, height = NULL, formatter = NULL, contrast = NULL, rich = FALSE, ... ) geom_fit_text( mapping = NULL, data = NULL, stat = "identity", position = "identity", na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, padding.x = grid::unit(1, "mm"), padding.y = grid::unit(1, "mm"), min.size = 4, place = "centre", outside = FALSE, grow = FALSE, reflow = FALSE, hjust = NULL, vjust = NULL, fullheight = NULL, width = NULL, height = NULL, formatter = NULL, contrast = FALSE, flip = FALSE, rich = FALSE, ... )
mapping |
|
data , stat , position , na.rm , show.legend , inherit.aes , ...
|
Standard geom
arguments as for |
padding.x , padding.y
|
Horizontal and vertical padding around the text,
expressed in |
min.size |
Minimum font size, in points. Text that would need to be
shrunk below this size to fit the box will be hidden. Defaults to 4 pt (8 pt
for |
place |
Where inside the box to place the text. Default is 'centre';
other options are 'topleft', 'top', 'topright', 'right', 'bottomright',
'bottom', 'bottomleft', 'left', and 'center'/'middle' which are both
synonyms for 'centre'. For |
outside |
If |
grow |
If |
reflow |
If |
hjust , vjust
|
Horizontal and vertical justification of the text. By
default, these are automatically set to appropriate values based on |
fullheight |
If |
width , height
|
When using |
formatter |
A function that will be applied to the text before it is
drawn. This is useful when using |
contrast |
If |
rich |
If |
flip |
If |
Except where noted, geom_fit_text()
behaves more or less like
ggplot2::geom_text()
.
There are three ways to define the box in which you want the text to be drawn. The extents of the box on the x and y axes are independent, so any combination of these methods can be used:
If the x
and/or y
aesthetics are used to set the location of the box,
the width or height will be set automatically based on the number of
discrete values in x
and/and y
.
Alternatively, if x
and/or y
aesthetics are used, the width and/or
height of the box can be overridden with a 'width' and/or 'height' argument.
These should be grid::unit()
objects; if not, they will be assumed to use
the native axis scale.
The boundaries of the box can be set using the aesthetics 'xmin' and 'xmax', and/or 'ymin' and 'ymax'.
If the text is too big for the box, it will be shrunk to fit the box. With
grow = TRUE
, the text will be made to fill the box completely whether that
requires shrinking or growing.
reflow = TRUE
will cause the text to be reflowed (wrapped) to better fit
in the box. If the text cannot be made to fit by reflowing alone, it will be
reflowed then shrunk to fit the box. Existing line breaks in the text will
be respected when reflowing.
geom_fit_text()
includes experimental support for drawing text in polar
coordinates (by adding coord_polar()
to the plot), however not all
features are available when doing so.
label (required)
(xmin AND xmax) OR x (required)
(ymin AND ymax) OR y (required)
alpha
angle
colour
family
fontface
lineheight
size
ggplot2::ggplot(ggplot2::presidential, ggplot2::aes(ymin = start, ymax = end, label = name, x = party)) + geom_fit_text(grow = TRUE)
ggplot2::ggplot(ggplot2::presidential, ggplot2::aes(ymin = start, ymax = end, label = name, x = party)) + geom_fit_text(grow = TRUE)
Robert Frost's poem Nothing Gold Can Stay (1923)
gold
gold
A data frame with 8 rows and 5 variables:
a line from the poem
the xmin coordinate with which to draw the line
the xmax coordinate with which to draw the line
the ymin coordinate with which to draw the line
the ymax coordinate with which to draw the line
the line number