Skip to content
Prev 4832 / 398506 Next

simple ts plot question

On Fri, Mar 10, 2000 at 09:09:58AM -0300, Francisco Cribari Neto wrote:
Try
  > plot(cbind(ts1.ts,ts2.ts),xlab="time", ylab="", plot.type="single")

  or better something like:
  > plot(cbind(ts1.ts,ts2.ts),plot.type="single",
  + col=c("yellow","red"),lty=c("solid","dotted")) #colours and patterns

  It can also be helpful to contrast 'c(ts1.ts,ts2.ts)' with
  'cbind(ts1.ts,ts2.ts)'.

  guido

  
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Message-ID: <20000310130116.A12365@sirio.stat.unipd.it>
In-Reply-To: <200003101209.JAA14605@de.ufpe.br>; from cribari@de.ufpe.br on Fri, Mar 10, 2000 at 09:09:58AM -0300