[R] plot function

Wacek Kusnierczyk Waclaw.Marcin.Kusnierczyk at idi.ntnu.no
Sun Jun 22 00:29:23 CEST 2008


Duncan Murdoch wrote:
> 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")
>

x <- 1:1000
y1 <- rnorm(1000)
y2 <- rexp(1000)
matplot(x, cbind(y1, y2), pch="o")


vQ



More information about the R-help mailing list