Usage
lpc.control(iter =100, cross=TRUE,
boundary = 0.005, convergence.at = 0.00001,
mult=NULL, ms.h=NULL, ms.sub=30,
pruning.thresh=0.0, rho0=0.4)
Arguments
iter
Maximum number of iterations on either side of the starting point within each branch.
cross
Logical parameter. If TRUE, curves are stopped when they
come too close to an existing branch. Used in the self-coverage function.
boundary
This boundary correction [2] reduces the bandwidth adaptively once the
relative difference of parameter values between two centers of mass
falls below the given threshold. This measure delays convergence and
enables the curve to proceed further into the e
convergence.at
This forces the curve to stop if the
relative difference of parameter values between two centers of mass
falls below the given threshold. If set to 0, then the curve will
always stop after exactly iter
iterations.
mult
numerical value which enforeces a fixed number of starting points. If the
number given here is larger than the number of starting points
provided at x0
, then the missing points will be set at
random (For example, if $d=2$,
ms.h
sets the bandwidth (vector) for the initial mean shift procedure
which finds the local density modes, and, hence, the starting points
for the LPC. If unspecified, the bandwidth h
used in
function lpc
is used here too
ms.sub
proportion of data points (default=30) which are used to initialize
mean shift trajectories for the mode finding. In fact, we use
min(max(ms.sub, floor(ms.sub*N/100)), 10*ms.sub)
trajectories.
pruning.thresh
Prunes branches corresponding to higher-depth starting points if
their density estimate falls below this threshold. Typically, a value between 0.0
and 1.0. The setting 0.0 means no pruning.
rho0
A numerical value which steers the birth process of higher-depth starting
points. Usually, between 0.3 and 0.4 (see reference [1]).