- x
A numeric vector of length \(M\) or a numeric matrix of shape
\(N \times M\) or an object of class funData::funData
. If a numeric
vector or matrix, it specifies the grid(s) of size \(M\) on which each of
the \(N\) curves have been observed. If an object of class
funData::funData
, it contains the whole functional data set and the y
argument is not used.
- y
Either a numeric matrix of shape \(N \times M\) or a numeric array
of shape \(N \times L \times M\) or an object of class fda::fd
. If a
numeric matrix or array, it specifies the \(N\)-sample of
\(L\)-dimensional curves observed on grids of size \(M\). If an object
of class fda::fd
, it contains all the necessary information about the
functional data set to be able to evaluate it on user-defined grids.
- warping_class
A string specifying the warping class Choices are
"affine"
, "dilation"
, "none"
, "shift"
or "srsf"
. Defaults to
"affine"
. The SRSF class is the only class which is boundary-preserving.
- centroid_type
A string specifying the type of centroid to compute.
Choices are "mean"
, "median"
"medoid"
, "lowess"
or "poly"
.
Defaults to "mean"
. If LOWESS appproximation is chosen, the user can
append an integer between 0 and 100 as in "lowess20"
. This number will be
used as the smoother span. This gives the proportion of points in the plot
which influence the smooth at each value. Larger values give more
smoothness. The default value is 10%. If polynomial approximation is
chosen, the user can append an positive integer as in "poly3"
. This
number will be used as the degree of the polynomial model. The default
value is 4L
.
- metric
A string specifying the metric used to compare curves. Choices
are "l2"
or "pearson"
. Defaults to "l2"
. Used only when
warping_class != "srsf"
. For the boundary-preserving warping class, the
L2 distance between the SRSFs of the original curves is used.
- cluster_on_phase
A boolean specifying whether clustering should be
based on phase variation or amplitude variation. Defaults to FALSE
which
implies amplitude variation.
- use_verbose
A boolean specifying whether the algorithm should output
details of the steps to the console. Defaults to TRUE
.
- warping_options
A numeric vector supplied as a helper to the chosen
warping_class
to decide on warping parameter bounds. This is used only
when warping_class != "srsf"
.
- maximum_number_of_iterations
An integer specifying the maximum number
of iterations before the algorithm stops if no other convergence criterion
was met. Defaults to 100L
.
- number_of_threads
An integer value specifying the number of threads
used for parallelization. Defaults to 1L
. This is used only when
warping_class != "srsf"
.
- parallel_method
An integer value specifying the type of desired
parallelization for template computation, If 0L
, templates are computed
in parallel. If 1L
, parallelization occurs within a single template
computation (only for the medoid method as of now). Defaults to 0L
. This
is used only when warping_class != "srsf"
.
- distance_relative_tolerance
A numeric value specifying a relative
tolerance on the distance update between two iterations. If all
observations have not sufficiently improved in that sense, the algorithm
stops. Defaults to 1e-3
. This is used only when warping_class != "srsf"
.
- use_fence
A boolean specifying whether the fence algorithm should be
used to robustify the algorithm against outliers. Defaults to FALSE
. This
is used only when warping_class != "srsf"
.
- check_total_dissimilarity
A boolean specifying whether an additional
stopping criterion based on improvement of the total dissimilarity should
be used. Defaults to TRUE
. This is used only when warping_class != "srsf"
.
- compute_overall_center
A boolean specifying whether the overall center
should be also computed. Defaults to FALSE
. This is used only when
warping_class != "srsf"
.