What about the metafor package?

Or just create your own plot. 

For example, using ggplot2 package:

limits <- aes(ymax = OR + (OR - 95%LCI), ymin = OR - (OR - 95%LCI))
ggplot(dataframe, aes(x = Study.Name, y = OR)) + geom_point() + 
geom_errobar(limits)

Best, 
Scott
On Wednesday, April 6, 2011 at 11:53 AM, cheba meier wrote:
Dear all,
> 
> I have a four variable: Stuy.Name, OR, 95%LCI and 95%UCI and I would like to
> create a meta analysis plot. I can't use meta.MH function in metaplot
> because I do not have
> n.trt, n.ctrl, col.trt, col.ctrl are not available! Is there an alternative
> way to do it?
> 
> Many thanks in advance,
> Cheba
> 
>  [[alternative HTML version deleted]]
> 
> ______________________________________________
> R-help@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
> 

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to