Re: [R] using facet_grid() from ggplot2 with additional text in labels

2008-01-28 Thread ONKELINX, Thierry
Verzonden: zaterdag 26 januari 2008 14:15 Aan: r-help; hadley wickham Onderwerp: [R] using facet_grid() from ggplot2 with additional text in labels Hi I am using ggplot2 at the moment and I must say it is definitely better then ggplot - good work. My problem is that I am using facet_grid

Re: [R] using facet_grid() from ggplot2 with additional text in labels

2008-01-28 Thread hadley wickham
ggopt(strip.text = function(variable, value) paste(variable, value, sep== )) That's exactly what I was looking for - thanks. One thing that I should mention is that this is likely to change at some point in the future. Eventually it will become: + facet_grid(strip.text = function(variable,

Re: [R] using facet_grid() from ggplot2 with additional text in labels

2008-01-28 Thread Rainer M Krug
] using facet_grid() from ggplot2 with additional text in labels Hi I am using ggplot2 at the moment and I must say it is definitely better then ggplot - good work. My problem is that I am using facet_grid() in the following way: p - ggplot(ssq, aes(x=year, y=-log(ssq))) p + geom_point

Re: [R] using facet_grid() from ggplot2 with additional text in labels

2008-01-27 Thread hadley wickham
I am using ggplot2 at the moment and I must say it is definitely better then ggplot - good work. My problem is that I am using facet_grid() in the following way: p - ggplot(ssq, aes(x=year, y=-log(ssq))) p + geom_point() + facet_grid(me*gi~cs*rz) and it works nicely, except that I

[R] using facet_grid() from ggplot2 with additional text in labels

2008-01-26 Thread Rainer M Krug
Hi I am using ggplot2 at the moment and I must say it is definitely better then ggplot - good work. My problem is that I am using facet_grid() in the following way: p - ggplot(ssq, aes(x=year, y=-log(ssq))) p + geom_point() + facet_grid(me*gi~cs*rz) and it works nicely, except that I