Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-22 Thread ychu066
NICE!!! thanks Deepayan Sarkar wrote: On Thu, Nov 19, 2009 at 6:03 AM, ychu066 ychu...@aucklanduni.ac.nz wrote: http://old.nabble.com/file/p26418382/hist1.png hist1.png  i want three plots along on the side , how to i do that ?  and I also want to change the colour of the bars for

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-22 Thread ychu066
anyone know how to add some text on the panel ??? for example 2.5, 50 and 1000 are mearsured in Litre, and i want to put the units beside the measurements. How could i do that? ychu066 wrote: NICE!!! thanks Deepayan Sarkar wrote: On Thu, Nov 19, 2009 at 6:03 AM, ychu066

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-19 Thread Hrishi Mittal
Add col=i in the histogram call. -- View this message in context: http://old.nabble.com/How-do-I-change-the-colour-and-format-for-the-trelli-plot---tp26418382p26421302.html Sent from the R help mailing list archive at Nabble.com. __

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-19 Thread ychu066
what is that ? Hrishi Mittal wrote: Add col=i in the histogram call. -- View this message in context: http://old.nabble.com/How-do-I-change-the-colour-and-format-for-the-trelli-plot---tp26418382p26421453.html Sent from the R help mailing list archive at Nabble.com.

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-19 Thread Hrishi Mittal
To have a different colour for each histogram. Wasn't that your question? Sorry if I misunderstood. Did you try it? ychu066 wrote: what is that ? Hrishi Mittal wrote: Add col=i in the histogram call. -- View this message in context:

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-19 Thread ychu066
Fore example my code is histogram(~data[,8]|data[,2], ylab = Frequency, xlab = Score, xlim = c(1,5), ylim = c(0,100),layout = c(3,1),col=data[,2] ) and i want the colour to be depended on the level of the factor in data[,2]. how do i do that ? ychu066 wrote: what is that ?

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-19 Thread ychu066
I want to change the colour of the histogram in each panel by the levels of the conoditonal factor. I have 3 levels in the factor levels(data[,2])[1] levels(data[,2])[2] levels(data[,2])[3] what can i do , in order to chnage the colour ?? ychu066 wrote: Fore example my code is

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-19 Thread David Winsemius
On Nov 19, 2009, at 3:10 PM, ychu066 wrote: I want to change the colour of the histogram in each panel by the levels of the conoditonal factor. I have 3 levels in the factor levels(data[,2])[1] levels(data[,2])[2] levels(data[,2])[3] what can i do , in order to chnage the colour ??

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-19 Thread ychu066
I AM REALLY LOST . ychu066 wrote: I want to change the colour of the histogram in each panel by the levels of the conoditonal factor. I have 3 levels in the factor levels(data[,2])[1] levels(data[,2])[2] levels(data[,2])[3] what can i do , in order to chnage the

[R] How do I change the colour and format for the trelli plot ?

2009-11-18 Thread ychu066
http://old.nabble.com/file/p26418382/hist1.png hist1.png i want three plots along on the side , how to i do that ? and I also want to change the colour of the bars for each plot, how do i do that ? i got the code here to draw that .. columns - 8:153 plots - vector(list, length(columns)) j -

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-18 Thread ychu066
I have solved the first problem by using layout=c(1,3) but still cant find the solution for the next problem of getting differenct colour for the bars in the 3 different histogram plots ychu066 wrote: http://old.nabble.com/file/p26418382/hist1.png hist1.png i want three plots along

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-18 Thread ychu066
tried reading the help(histogram) but didnt fiind it helpful ychu066 wrote: I have solved the first problem by using layout=c(1,3) but still cant find the solution for the next problem of getting differenct colour for the bars in the 3 different histogram plots ychu066 wrote:

Re: [R] How do I change the colour and format for the trelli plot ?

2009-11-18 Thread Deepayan Sarkar
On Thu, Nov 19, 2009 at 6:03 AM, ychu066 ychu...@aucklanduni.ac.nz wrote: http://old.nabble.com/file/p26418382/hist1.png hist1.png  i want three plots along on the side , how to i do that ?  and I also want to change the colour of the bars for each plot, how do i do that ? i got the code