Re: [R] How to do a pretty panel plot?

2009-05-15 Thread Jakson Alves de Aquino
Ajay Shah wrote: Here's my best version of your code: ## Data M - structure(list(date = structure(c(13634, 13665, 13695, 13726, 13757, 13787, 13818, 13848, 13879, 13910, 13939, 13970, 14000, 14031, 14061, 14092, 14123, 14153, 14184, 14214,

Re: [R] How to do a pretty panel plot?

2009-05-15 Thread stephen sefick
M - (structure(list(date = structure(c(13634, 13665, 13695, 13726, 13757, 13787, 13818, 13848, 13879, 13910, 13939, 13970, 14000, 14031, 14061, 14092, 14123, 14153, 14184, 14214, 14245, 14276, 14304, 14335), class = Date), cospi = c(1987.31, 2033.37, 2140.13, 2120.66, 2427.09, 2917.7, 2915.28,

[R] How to do a pretty panel plot?

2009-05-14 Thread Ajay Shah
The pretty picture that I saw at: http://chartsgraphs.wordpress.com/2009/02/09/r-panel-chart-beats-excel-chart/#more-1096 inspired me to try something similar. The code that I wrote is: --snipsnip- M - structure(list(date

Re: [R] How to do a pretty panel plot?

2009-05-14 Thread DKOD
Ajay Shah wrote: The pretty picture that I saw at: http://chartsgraphs.wordpress.com/2009/02/09/r-panel-chart-beats-excel-chart/#more-1096 inspired me to try something similar. The code that I wrote is:

Re: [R] How to do a pretty panel plot?

2009-05-14 Thread Ajay Shah
On Thu, May 14, 2009 at 05:09:59PM -0700, ko...@processtrends.com wrote: Ajay I have added a few minor adjustments to your code to make the panel chart you want. You need to adjust the par(mar) to control space between 1st and 2nd plot. Thanks! This is a step forward for me. But now: *