get_mfd_array {funcharts} | R Documentation |
Get Multivariate Functional Data from a three-dimensional array
Description
Get Multivariate Functional Data from a three-dimensional array
Usage
get_mfd_array(
data_array,
grid = NULL,
n_basis = 30,
n_order = 4,
basisobj = NULL,
Lfdobj = 2,
lambda = NULL,
lambda_grid = 10^seq(-10, 1, length.out = 10),
ncores = 1
)
Arguments
data_array |
A three-dimensional array. The first dimension corresponds to argument values, the second to replications, and the third to variables within replications. |
grid |
See |
n_basis |
See |
n_order |
#' See |
basisobj |
#' See |
Lfdobj |
#' See |
lambda |
See |
lambda_grid |
See |
ncores |
Deprecated. See |
Value
An object of class mfd
.
See also ?mfd
for additional details on the
multivariate functional data class.
See Also
Examples
library(funcharts)
library(fda)
data("CanadianWeather")
mfdobj <- get_mfd_array(CanadianWeather$dailyAv[, 1:10, ],
lambda = 1e-5)
plot_mfd(mfdobj)
[Package funcharts version 1.5.0 Index]