standard {rflowcyt} | R Documentation |
Standardize a numeric vector by its median and median absolute deviation (MAD).
standard(x)
x |
the data vector to be standardized |
returns the standardized version of x
Kevin Rader
Silverman, B.W. (1981). Using Kernel Density Estimates to Investigate Multimodality. J. Royal Statistical Society B, 43, 97-99.
get.h
, get.p
, emp.f
, get.num.modes
set.seed(12345) x<-rnorm(50,2,3) x1<-standard(x) c(median(x1),mad(x1))