[R] histogram - one bin for all values larger than a certain value

2005-09-26 Thread Florian Defregger
Dear all, I wonder if I can put together a histogram where one bin contains all the values that are larger than a certain specified value. Example: I have values ranging from 0 to 40 and I want 10 bins from 0 to 10, i.e. for the intervals [0,1), [1,2) , ..., [9,10). And then I want one last bin

Re: [R] histogram - one bin for all values larger than a certain value

2005-09-26 Thread Sundar Dorai-Raj
Florian Defregger wrote: > Dear all, > I wonder if I can put together a histogram where one bin contains all the > values that are larger than a certain specified value. > > Example: > I have values ranging from 0 to 40 and I want 10 bins from 0 to 10, i.e. for > the intervals [0,1), [1,2) , .

Re: [R] histogram - one bin for all values larger than a certain value

2005-09-26 Thread Romain Francois
Le 26.09.2005 16:15, Sundar Dorai-Raj a écrit : >Florian Defregger wrote: > > >>Dear all, >>I wonder if I can put together a histogram where one bin contains all the >>values that are larger than a certain specified value. >> >>Example: >>I have values ranging from 0 to 40 and I want 10 bins fr

Re: [R] histogram - one bin for all values larger than a certain value

2005-09-26 Thread Francisco J. Zagmutt
x=runif(100,0,40) hist(x, breaks=c(0,1,2,3,4,5,6,7,8,9,10,40)) Is this what you had in mind? Francisco >From: "Florian Defregger" <[EMAIL PROTECTED]> >To: >Subject: [R] histogram - one bin for all values larger than a certain value >Date: Mon, 26 Sep 2005 15:36:21