This function can be used to add text to forest plot. The text can be span to multiple rows and columns. The height of the row will be changed accordingly if the text is added to only one row. The width of the text may exceeds the columns provided if the text is too long.
add_text(
plot,
text,
row = NULL,
col = NULL,
part = c("body", "header"),
just = c("center", "left", "right"),
gp = gpar(),
padding = unit(1, "mm"),
parse = FALSE
)
A gtable
object.
A forest plot object.
A character or expression vector, see textGrob
.
Row to add the text, this will be ignored if the part
is
"header".
A numeric value or vector indicating the columns the text will be added. The text will span over the column if a vector is given.
Part to add text, body (default) or header.
The justification of the text, "center"
(default),
"left"
or "right"
.
An object of class "gpar"
, this is the graphical parameter
settings of the text. See gpar
.
Padding of the text, default is unit(1, "mm")
Logical, behaviour for parsing text as plotmath, see
plotmath