This function can be used to insert text to forest plot. Remember to adjust for the row number if you have added text before, including header. This is achieved by inserted new row(s) to the plot and will affect the row number. A text vector can be inserted to multiple columns or rows.
insert_text(
plot,
text,
row = NULL,
col = NULL,
part = c("body", "header"),
just = c("center", "left", "right"),
before = TRUE,
gp = gpar(),
padding = unit(1, "mm"),
parse = FALSE
)
A gtable
object.
A forest plot object.
A character or expression vector, see textGrob
.
Row to insert 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 insert text, body (default) or header.
The justification of the text, "center"
(default),
"left"
or "right"
.
Indicating the text will be inserted before or after the row.
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