
The Meanshift mode estimator.
meanshift(
x,
bw = NULL,
kernel = "gaussian",
par = shorth(x),
iter = 1000,
tolerance = sqrt(.Machine$double.eps)
)
numeric. Vector of observations.
numeric. The smoothing bandwidth to be used.
character. The kernel to be used. Available kernels are
"biweight"
, "cosine"
, "eddy"
,
"epanechnikov"
, "gaussian"
, "optcosine"
,
"rectangular"
, "triangular"
, "uniform"
.
See density
for more details on some of these kernels.
numeric. The initial value used in the meanshift algorithm.
numeric. Maximal number of iterations.
numeric. Stopping criteria.
meanshift
returns a numeric value, the mode estimate,
with an attribute "iterations"
.
The number of iterations can be less than iter
if the stopping criteria specified by eps
is reached.
Fukunaga, K. and Hostetler, L. (1975). The estimation of the gradient of a density function, with applications in pattern recognition. IEEE Transactions on Information Theory, 21(1):32--40.
# NOT RUN {
# Unimodal distribution
x <- rweibull(100, shape = 12, scale = 0.8)
## True mode
weibullMode(shape = 12, scale = 0.8)
## Estimate of the mode
mlv(x, method = "meanshift", par = mean(x))
# }
Run the code above in your browser using DataLab