Re: [R] histogramme

2007-11-07 Thread Henrique Dallazuanna
Hi, Perhaps: par(mfrow=c(2,2)) hist(as.numeric(as.character(B[,1])),col="lightblue", border="pink") hist(as.numeric(as.character(A[,1])),col="yellow", border="pink") or hist(as.numeric(as.character(B[,1])),col="lightblue", border="pink") par(new=T) hist(as.numeric(as.character(A[,1])),col="yell

[R] histogramme

2007-11-07 Thread elyakhlifi mustapha
Hello, I can plot histogrammes but I want to know how can I do to plot 2 histogrammes at the same time (in the same window). hist(as.numeric(as.character(B[,1])),col="lightblue", border="pink") hist(as.numeric(as.character(A[,1])),col="yellow", border="pink") thanks. _