R/estimate_parameters.R
estimate_parameters_recursion.Rd
This function performs a recursive estimation of the different parameters used for the estimation of the mean and covariance estimation of functional data. The recursion is made by small step onto the estimation of the regularity of the curves. The pre-smoothing of the data is done using a Nadaraya-Watson estimator and the used bandwidth modified using each new estimation of the regularity.
estimate_parameters_recursion(
curves,
point = 0.5,
delta_f = NULL,
kernel_name = "epanechnikov",
beta = 1
)
List, where each element represents a curve. Each curve have to be defined as a list with two entries:
$t The sampling points
$x The observed points
Numeric (default = 0.5), sampling point at which the data is pre-smoothed.
Function (default = NULL), function to determine the delta.
String (default = 'epanechnikov'), the kernel used for the estimation:
epanechnikov
uniform
biweight
Numeric (default = 1), pre-specified regularity of the curves to start the recursion. The default value is 1, which correspond to at least one time differentiable curves.
List, with six entries:
$point Time point where the smoothing has been done.
$curves Smoothed curves
$H Estimated regularity.
$L Estimated constant.
$var Estimated variance.
$mom Estimated \(E(X^{2}_{t_0})\)
S. Golovkine, N. Klutchnikoff and V. Patilea (2021) - Adaptive optimal estimation of irregular mean and covariance functions.