Re: [R] Help with plots

2010-08-04 Thread Sarah Chisholm
Hi, I am trying to plot several time series plots with R, but I can't seem to get the x-axis properly formatted. What I am doing at the moment is: dates - seq(as.Date(2007/06/10, %Y/%m/%d), as.Date(2010/03/28, %Y/%m/%d), 7) par(mfrow=c(5,2)) plot(DateJonEnd1, End1Jon, main=Weekly Training at

Re: [R] help: forest plots

2009-12-14 Thread Viechtbauer Wolfgang (STAT)
-project.org] On Behalf Of Kim Jung Hwa Sent: Monday, December 14, 2009 05:22 To: C.H. Cc: r-help@r-project.org Subject: Re: [R] help: forest plots Thanks for this link. It helps, but I have to make lots of forest plots and these R scripts are not generic. Are you aware of similar functions

[R] help: forest plots

2009-12-13 Thread Kim Jung Hwa
Hi All, I'm fitting a Poisson regression. And I want to plot 95% Confidence Interval of Regression Estimates. After coming back to original scale (using following formula): exponential(estimate +/- 1.96*SE), at best I can get the output in the form of estimates, lower_limit, upper_limit

Re: [R] help: forest plots

2009-12-13 Thread C.H.
This one does required the metafor package. http://tables2graphs.com/doku.php?id=04_regression_coefficients On Mon, Dec 14, 2009 at 8:13 AM, Kim Jung Hwa kimhwamaill...@gmail.com wrote: Hi All, I'm fitting a Poisson regression. And I want to plot 95% Confidence Interval of Regression

Re: [R] help: forest plots

2009-12-13 Thread Kim Jung Hwa
Thanks for this link. It helps, but I have to make lots of forest plots and these R scripts are not generic. Are you aware of similar functions as forest(), which can take input in the form of estimates, lower_limit, upper_limit? Thanks a lot! ~Kim On Sun, Dec 13, 2009 at 8:12 PM, C.H.

[R] Help with Plots

2008-10-29 Thread Alex99
Hi there, I am trying to have a connectivity graph (two plots at once) in R: this is an example: x1=sin((0:100)*2*pi/100) y1=cos((0:100)*2*pi/100) plot(x1,y1) will draw a circle and x2=c(1,9,3,4,8,4,2,0) y2=c(3,6,8,2,4,1,9,6) plot(x2,y2,type=b) will draw a graph with corresponding x's and

Re: [R] Help with Plots

2008-10-29 Thread stephen sefick
#How about this? x1=6*(sin((0:100)*2*pi/100))+4 y1=6*(cos((0:100)*2*pi/100))+4 plot(x1,y1) x2=c(1,9,3,4,8,4,2,0) y2=c(3,6,8,2,4,1,9,6) lines(x2,y2,type=b) On Wed, Oct 29, 2008 at 2:48 PM, Alex99 [EMAIL PROTECTED] wrote: Hi there, I am trying to have a connectivity graph (two plots at once) in