[R] plot function

Duncan Murdoch murdoch at stats.uwo.ca
Fri Jun 20 13:06:40 CEST 2008


On 20/06/2008 4:09 AM, Norbert NEUWIRTH wrote:
> dear userRs, 
> 
> I am deeply ashamed asking you this very basic question, but I did neither get it online nor by the S/R-literature I have. 
> 
> I simply want to plot the values of a COUPLE of vectors within one graph - in concrete a couple of time series, a couple of distributions and some stacked area graphs. I am higly convinced, that there are dozens of solutions. Could you please recommend me one?


x <- 1:1000
y1 <- rnorm(1000)
y2 <- rexp(1000)
ylim <- range(c(y1,y2))
plot(x, y1, col="blue", ylim = ylim)
points(x, y2, col="red")

Duncan Murdoch



More information about the R-help mailing list