View source: R/real_time_01_pca.mfd.R
pca_mfd_real_time | R Documentation |
This function produces a list of objects,
each of them contains the result of applying pca_mfd
to
a multivariate functional data object
evolved up to an intermediate domain point.
pca_mfd_real_time(mfdobj_list, scale = TRUE, nharm = 20, ncores = 1)
mfdobj_list |
A list created using
|
scale |
See |
nharm |
See |
ncores |
If you want parallelization, give the number of cores/threads to be used when creating objects separately for different instants. |
A list of lists each produced by pca_mfd
,
corresponding to a given instant.
C. Capezza
pca_mfd
library(funcharts)
data("air")
air <- lapply(air, function(x) x[1:10, , drop = FALSE])
mfdobj_list <- get_mfd_list_real_time(air[c("CO", "temperature")],
n_basis = 15,
lambda = 1e-2,
k_seq = seq(0.25, 1, length = 5))
mod_list <- pca_mfd_real_time(mfdobj_list)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.