search for: credplot

Displaying 2 results from an estimated 2 matches for "credplot".

Did you mean: predplot
2011 Sep 30
1
need help on forest plot with ggplot
...SD.IgM 76.90417 75.61221 78.19613 Iq.IgM Iq.IgM 79.45917 78.73032 80.18801 Merlin.IgM Merlin.IgM 64.50167 60.30376 68.69958 Pb.IgM Pb.IgM 65.38667 61.81591 68.95742 AFRIMS AFRIMS 88.29958 84.84922 91.74995 I am currently using the code as suggested on web: credplot.gg<- function(d){require(ggplot2) p <- ggplot(d,aes(x=x,y=y,ymin=ylo,ymax=yhi))+geom_pointrange()+coord_flip()+ xlab('RDT tests')+ylab('Sensitivity') return(p)} d <- data.frame(x=names(ragama.meta)[2:13],y=xx[2:13],ylo=xx[2:13]-1.96*ss[2:13], yhi=xx[2:13]+1.96*ss[2:...
2010 Oct 31
0
Fwd: ForestPlot or similar
...lab('Hazard ratio')+ > geom_hline(y=1, col='red', lty=2) > > > Abhijit > On Oct 30, 2010, at 5:31 PM, Matt Shotwell wrote: > >> Here is a small function for forest plots in R, with an example: >> >> http://biostatmatt.com/wiki/r-credplot >> >> -Matt >> >> On Sat, 2010-10-30 at 11:40 -0400, Mestat wrote: >>> Here is one example: >>> I have three vectors (mean,lower interval, upper interval) >>> mean<-c(2,4,6,8) >>> l<-c(1,2,3,4) >>> u<-c(4,8,12,16) >&...