Chaudhari, Bimal
2010-May-10 22:17 UTC
[R] plotting data when all you have is the summary data
Are there functions/packages which support plots (bar and/or line) where I provide the point estimate and some error measure rather than the raw data? I often have to summarize/present data from multiple sources where the original data is unavailable and do not yet have a good solution for this. Thanks, bimal Bimal P Chaudhari, MPH Boston University MD Candidate, 2011 Washington University in St. Louis MS Candidate, 2010 Doris Duke Clinical Research Fellow 314-286-2864
David Winsemius
2010-May-10 22:51 UTC
[R] plotting data when all you have is the summary data
On May 10, 2010, at 6:17 PM, Chaudhari, Bimal wrote:> Are there functions/packages which support plots (bar and/or line) > where > I provide the point estimate and some error measure rather than the > raw > data? > > I often have to summarize/present data from multiple sources where the > original data is unavailable and do not yet have a good solution for > this.There are R packages that support meta analysis. Learn to search, grasshopper.> > Thanks, > bimal > > Bimal P Chaudhari, MPH > Boston University > MD Candidate, 2011 > Washington University in St. Louis > MS Candidate, 2010David Winsemius, MD, MPH West Hartford, CT
Bimal, in the "memisc" packages: ?panel.errbars This might be a good option for you. HTH, Sam -- View this message in context: http://r.789695.n4.nabble.com/plotting-data-when-all-you-have-is-the-summary-data-tp2173026p2173303.html Sent from the R help mailing list archive at Nabble.com.
On 05/11/2010 08:17 AM, Chaudhari, Bimal wrote:> Are there functions/packages which support plots (bar and/or line) where > I provide the point estimate and some error measure rather than the raw > data? > > I often have to summarize/present data from multiple sources where the > original data is unavailable and do not yet have a good solution for > this. >Hi Bimal, The bar and line plots of the summary measures are easy using the "plot" and "barplot" functions. Adding the error measures is but a little more complicated. See the R-FAQ 7.38. Jim