[R] Plots spanning columns

2008-08-28 Thread Jose Luis Aznarte M.
Hi! I want to plot three graphs (residuals, ACF and PACF of a model). Ideally I would use a c(2,2) disposition where the residuals plot would start at position 1,1 and span to position 1,2. Then I would plot the ACF in position 2,1 and the PACF in position 2,2. Maybe is clearer like this:

Re: [R] Plots spanning columns

2008-08-28 Thread Henrique Dallazuanna
Try this: l - layout(matrix(c(1, 2, 1, 3), 2)) layout.show(l) On Thu, Aug 28, 2008 at 9:40 AM, Jose Luis Aznarte M. [EMAIL PROTECTED] wrote: Hi! I want to plot three graphs (residuals, ACF and PACF of a model). Ideally I would use a c(2,2) disposition where the residuals plot would start

Re: [R] Plots spanning columns

2008-08-28 Thread Richard M. Heiberger
library(HH) example(tsacfplots) ?tsacfplots __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained,

Re: [R] Plots spanning columns

2008-08-28 Thread David Scott
On Thu, 28 Aug 2008, Jose Luis Aznarte M. wrote: Hi! I want to plot three graphs (residuals, ACF and PACF of a model). Ideally I would use a c(2,2) disposition where the residuals plot would start at position 1,1 and span to position 1,2. Then I would plot the ACF in position 2,1 and the