[R] plot.ts panel function

2006-07-12 Thread Matthias Braeunig
How can I set the ylim in individual panels of a multiple plot.ts? The panels are all scaled to fully fit the series inside. But I need specific scales, and colors Here is an example: plot.ts(cbind(1:10,1:10/10),ylim=c(0,3))# ylim has no effect Can someone more knowledgable please

Re: [R] plot.ts panel function

2006-07-12 Thread Dieter Menne
Matthias Braeunig mb.atelier at web.de writes: How can I set the ylim in individual panels of a multiple plot.ts? The panels are all scaled to fully fit the series inside. But I need specific scales, and colors Here is an example: plot.ts(cbind(1:10,1:10/10),ylim=c(0,3)) #

Re: [R] plot.ts panel function

2006-07-12 Thread Gabor Grothendieck
If you convert the ts object to a zoo object then it will invoke plot.zoo in which case ylim= will work: library(zoo) x - cbind(1:10,1:10/10) plot(zoo(x), ylim = c(0,3)) On 7/12/06, Matthias Braeunig [EMAIL PROTECTED] wrote: How can I set the ylim in individual panels of a multiple plot.ts?