gt; From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-
> project.org] On Behalf Of Christian Bustamante
> Sent: Saturday, April 25, 2009 6:31 PM
> To: r-help@r-project.org
> Subject: [R] Conditional plot labels
>
> Hi all,
> I'm trying to do multiple graphs in a
Hi,
Have you considered using high-level plotting functions provided by
the ggplot2 or lattice package? Here's a dummy example,
x <- seq(0, 10, length=100)
y1 <- sin(x)
y2 <- cos(x)
y3 <- x^2/100
y4 <- 1/x
d <- data.frame(x, y1, y2, y3, y4)
library(reshape)
dm <- melt(d, id="x")
dm$type1
Hi all,
I'm trying to do multiple graphs in a window like this:
___ ___ ___
ylab |__| |__| |__|
___ ___ ___
ylab |__| |__| |__|
___ ___ ___
ylab |__| |__| |__|
xl xl xl
If I try to put the labels manually, some graphs become smaller th
3 matches
Mail list logo