Displaying 1 result from an estimated 1 matches for "cotpoints".
Did you mean:
  codepoints
  
2001 Oct 26
0
cut - suggestion
I often use cut in order to produce quick tabulations of continuous data.
But if you choose "sensibe cotpoints as in:
> z <- rnorm(100)
> table( cut( z, breaks=seq(-1,1,0.5) ),
+ cut( z, breaks=c(-100,0,100) ) )
           
            (-100,0] (0,100]
  (-1,-0.5]       18       0
  (-0.5,0]        19       0
  (0,0.5]          0      17
  (0.5,1]          0      19
 
you get labels that do not al...