Displaying 1 result from an estimated 1 matches for "cl16".
Did you mean:
c16
2008 Feb 16
1
plotEst
...e the estimated OR (with upper and lower conf.
limits),
and the horizontal exis should be fixed values: (1,0.8,0.7,0.6,0.5,0.4)
Here is a part of my code:
...ests=matrix(ncol=3,nrow=6)
ests[,1]<-c(mean(or1),mean(or14),mean(or15),mean(or16),mean(or17),mean(or18))
ests[,2]<-c(cl1,cl14,cl15,cl16,cl17,cl18)
ests[,3]<-c(cu1,cu14,cu15,cu16,cu17,cu18)
x1<-c(1,0.8,0.7,0.6,0.5,0.4)...
Now I have a matrix with three columns: estimate, lower limit of the
confidende interval, and upper limit of the confidence interval:
[,1] [,2] [,3]
[1,] 1.011794 0.6400744 1.383514
[2,...