Displaying 1 result from an estimated 1 matches for "cleandata".
2005 Jun 20
6
Bucketting data
Hi,
Am sure this is a trivial question but for some reason, haven't been able to figure it out.
I want to bucket data in a vector, and then iterate over the buckets.
Say the data set is:
> cleandata[,4]
 [1]  26  26  26  26  26  26  26  26  26  26  26  26  61  61  61  61  61  61  61  61  61  61  61  89  89  89  89  89  89  89 180 180 180 180 362 544 544 544
[39] 544 544 544 544 544 544 544
This has the buckets: 
26 61 89 180 362 544
I'd like something which gives me a vector of these bu...