Re: [R] How to do a meta-analysis plot

2008-08-26 Thread Thomas Lumley
On Mon, 25 Aug 2008, Jorge Ivan Velez wrote: My problem is that I don't have the raw data as rmeta _requires_ and, even when I have my data set in the _same_ (?) format that summary(a), when I tried plot(mydata) it doesn't work. No, it doesn't _require_ that. If you just want a forest plot the

Re: [R] How to do a meta-analysis plot

2008-08-26 Thread Jonathan Baron
Another way to do it (based on summary data): http://finzi.psych.upenn.edu/R/Rhelp02a/archive/131342.html -- Jonathan Baron, Professor of Psychology, University of Pennsylvania Home page: http://www.sas.upenn.edu/~baron __ R-help@r-project.org mailing

Re: [R] How to do a meta-analysis plot

2008-08-26 Thread Michael Dewey
At 19:44 25/08/2008, Jorge Ivan Velez wrote: Dear R-list, I'd like to do a meta-analysis plot similar to Since these plots are known as forest plots ?forestplot might help you. As it says you have to do a bit more work but you do get much more flexibility install.packages('rmeta') require(r

Re: [R] How to do a meta-analysis plot

2008-08-25 Thread Gabor Grothendieck
See ?metaplot On Mon, Aug 25, 2008 at 2:44 PM, Jorge Ivan Velez <[EMAIL PROTECTED]> wrote: > Dear R-list, > > I'd like to do a meta-analysis plot similar to > > install.packages('rmeta') > require(rmeta) > data(catheter) > a <- meta.MH(n.trt, n.ctrl, col.trt, col.ctrl, data=catheter, >

[R] How to do a meta-analysis plot

2008-08-25 Thread Jorge Ivan Velez
Dear R-list, I'd like to do a meta-analysis plot similar to install.packages('rmeta') require(rmeta) data(catheter) a <- meta.MH(n.trt, n.ctrl, col.trt, col.ctrl, data=catheter, names=Name, subset=c(13,6,5,3,7,12,4,11,1,8,10,2)) summary(a) plot(a) (see attached file) by using my ow