feemjackknife | R Documentation |
Perform leave-one-out fitting + validation of PARAFAC models on a given FEEM cube.
feemjackknife(cube, ..., progress = TRUE)
## S3 method for class 'feemjackknife'
plot(
x, kind = c('estimations', 'RIP', 'IMP'), ...
)
## S3 method for class 'feemjackknife'
coef(
object, kind = c('estimations', 'RIP', 'IMP'), ...
)
cube |
A |
progress |
Set to |
x , object |
An object returned by |
kind |
Chooses what to plot (when called as
|
... |
|
The function takes each sample out of the dataset, fits a PARAFAC model without it, then fits the outstanding sample to the model with emission and excitation factors fixed:
3{ \hat{\mathbf{c}} = (\mathbf{A} \ast \mathbf{B})^{+} \times \mathrm{vec}(\mathbf{X})A list of class feemjackknife
containing the following
entries:
Result of fitting the overall cube
with
feemparafac
.
A list of length dim(cube)[3]
containing the reduced dataset
components. Every feemparafac
object in the list has
an additional Chat
attribute containing the result of
fitting the excluded spectrum back to the loadings of the reduced
model.
A lattice plot object. Its print
or plot
method
will draw the plot on an appropriate plotting device.
A data.frame
containing various columns,
depending on the value of the kind
argument:
Values of the loadings.
The axis of the loadings, “Emission” or “Excitation”.
Emission or excitation wavelength the loading values correspond to.
The component number.
The sample (name if cube
had names, integer if it didn't)
that was omitted to get the resulting loading values.
Mean squared residual value for the model with a given sample omitted.
Mean squared difference in emission mode loadings between the overall model and the model with a given sample omitted.
Mean squared difference in excitation mode loadings between the overall model and the model with a given sample omitted.
The sample (name if cube
had names, integer if it didn't)
that was omitted from a given model.
Score values for the overall model.
Score values estimated from the loadings of the model missing a given sample.
The component number.
The sample (name if cube
had names, integer if it didn't)
that was omitted from a given model.
Riu2003
feemparafac
, feemcube
data(feems)
cube <- feemscale(feemscatter(cube, rep(14, 4)), na.rm = TRUE)
# takes a long time; the stopping criterion is weaked for speed
jk <- feemjackknife(cube, nfac = 3, ctol = 1e-4)
# feemparafac methods should be able to use the environment and subset
plot(jk$leaveone[[1]])
plot(jk)
plot(jk, 'IMP')
plot(jk, 'RIP')
head(coef(jk))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.