Displaying 1 result from an estimated 1 matches for "forest_mean".
2011 Jan 31
0
Forest Plot Text
...ll,
I am having a problem creating text for my forest plot using the "forestplot" function in the rmeta package. I think my problem is that I have too many columns of text, so I was wondering if there is a way to shrink my text or to change the default setting.
Here is an example:
####
forest_mean<- as.numeric(c(NA, 1.00, 2.00, NA, 0.75, 1.10))
forest_lower<- as.numeric(c(NA, 0.85, 1.35, NA, 0.70, 0.80))
forest_upper<- as.numeric(c(NA, 1.15, 2.65, NA, 0.80, 1.40))
forest_pval<- as.numeric(c(NA, 0.004, 0.100, NA, 0.360, 0.080))
forest_int<- as.numeric(c(NA,NA,NA,0.00, NA, NA...