Re: [R] Combining several mappings in ggplot2

2008-04-04 Thread Tribo Laboy
a. > ~ Roger Brinner > > The combination of some data and an aching desire for an answer does not > ensure that a reasonable answer can be extracted from a given body of > data. > ~ John Tukey > > -Oorspronkelijk bericht----- > Van: Tribo Laboy [mailto:[EMAIL P

Re: [R] Combining several mappings in ggplot2

2008-03-27 Thread ONKELINX, Thierry
ONKELINX, Thierry CC: hadley wickham; r-help@r-project.org Onderwerp: Re: [R] Combining several mappings in ggplot2 Hi Thierry Thanks for replying. I tried your code, but it spit an error on me: > Orange2 <- data.frame(Tree = as.factor(Tree_v), age = age_v, + circumference = circ

Re: [R] Combining several mappings in ggplot2

2008-03-26 Thread Tribo Laboy
Hi Hadley, I am surprised you find time to reply to r-help questions despite your thesis deadline being on Monday. Good luck with it! Yes, I can wait until the new version is ready! Regards, TL On Thu, Mar 27, 2008 at 12:28 PM, hadley wickham <[EMAIL PROTECTED]> wrote: > On Wed, Mar 26, 2008 at

Re: [R] Combining several mappings in ggplot2

2008-03-26 Thread hadley wickham
On Wed, Mar 26, 2008 at 6:01 AM, Tribo Laboy <[EMAIL PROTECTED]> wrote: > Apologies! I though that the Orange dataset comes with R, but it is in > fact in the package "datasets". > > So here's another "Orange2" dataset for the example: > > Tree_v = rep(c(1:5),each = 5) > age_v = rep(seq(1,25, b

Re: [R] Combining several mappings in ggplot2

2008-03-26 Thread Tribo Laboy
t; ensure that a reasonable answer can be extracted from a given body of > data. > ~ John Tukey > > -Oorspronkelijk bericht----- > Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Namens Tribo Laboy > Verzonden: woensdag 26 maart 2008 12:01 > Aan: hadley wickham

Re: [R] Combining several mappings in ggplot2

2008-03-26 Thread ONKELINX, Thierry
p: Re: [R] Combining several mappings in ggplot2 Apologies! I though that the Orange dataset comes with R, but it is in fact in the package "datasets". So here's another "Orange2" dataset for the example: Tree_v = rep(c(1:5),each = 5) age_v = rep(seq(1,25, by = 5),5) + 10*r

Re: [R] Combining several mappings in ggplot2

2008-03-26 Thread Tribo Laboy
Apologies! I though that the Orange dataset comes with R, but it is in fact in the package "datasets". So here's another "Orange2" dataset for the example: Tree_v = rep(c(1:5),each = 5) age_v = rep(seq(1,25, by = 5),5) + 10*runif(25) circumference_v <- rep(seq(21,45, by = 5), 5)*Tree_v + 25*runif

Re: [R] Combining several mappings in ggplot2

2008-03-25 Thread hadley wickham
On Tue, Mar 25, 2008 at 11:48 AM, Tribo Laboy <[EMAIL PROTECTED]> wrote: > Hello, > > I want to be able to make a plot that has several series with > different color and linetype. > Online documentation suggest that this is possible, but I haven't found how: > > "We can also create redundant ma