I'm using the meta R package to create a forest plot:
library(meta)
m1 <- metacont(10 + 1:4, 1:4, c(1:2, 3, 4),
10 + 1:4, 1:4, c(1:2, 3, 4))
forest(m1)
I now want to remove the meta analysis and weights and the squares should also be of equal size. It should visualize the effects only.
I Photoshopped this:
How can I achieve this?
You can remove those values with overall
.
forest.meta(m1,overall=FALSE, overall.hetstat = FALSE)
You can check all possibility at the documentation