A friend asked me to help with a forest plot recently. After chatting about what she wanted the end result to look like, this is what I came up with.
grid.arrange(data_table, p, ncol=2)## Warning: Removed 1 rows containing missing values (geom_point).
From Abhijit blog. But I figured I’d start a fresh, and I’d already borrowed some code of Abhijits in the past for a survival curve.
The package rmeta offers two different versions. One with forestplot like so:
And one with metaplot like so:
Ultimately the two would be used for different purposes, and these examples shown are straight from the manual for rmeta.
It wasn’t too much work to create ‘another’ custom option to get what my friend wanted, so thought I’d share the code for anyone else interest. There was a little bit of ‘misdirection’ for lack of a better term to get it across the line, and I’m sure elements of this are sloppy. You can access the code on my github.
I wrote this post in RStudio using the R Markdown language and then knitr to turn in into markdown (.md), and then pandoc to turn it into html. The original file is available here on github.
system(“pandoc -s forest_plot.md -o forest_plot.html”)




The metafor package also has a fairly flexible forest plot function.
I’ve also done a forest plot with ggplot2 recently. Maybe you’ll find it useful: http://chetvericov.ru/analiz-dannyx/grouped-forest-plots-using-ggplot2/