feemparafac | R Documentation |
feemparafac
forwards its arguments to
parafac
from the multiway package,
optionally rescales the result and attaches a few attributes.
Resulting objects of class feemparafac
can be accessed using
methods presented below.
feemparafac(
X, ..., const = rep('nonneg', 3), ctol = 1e-6,
rescale = 3, retries = 10, subset = TRUE, envir = NULL
)
## S3 method for class 'feemparafac'
plot(x, type = c("image", "lines"), ...)
## S3 method for class 'feemparafac'
coef(
object, type = c(
"all", "scores", "loadings", "surfaces",
"emission", "excitation", "samples"
), ...
)
## S3 method for class 'feemparafac'
fitted(object, ...)
## S3 method for class 'feemparafac'
residuals(object, ...)
## S3 method for class 'feemparafac'
reorder(x, neworder, like, ...)
## S3 method for class 'feemparafac'
rescale(x, mode, newscale, absorb, like, ...)
X |
A FEEM cube object. The per-sample factors will be multiplied by
If |
... |
|
const |
A character vector of length 3 specifying the constraints for all
modes of |
ctol |
The stopping criterion used by |
R^2R<sup>2</sup> below ctol
, the algorithm
stops.
feemparafac
tries hard to guarantee the convergence flag to be
0
(normal convergence) or 1
(iteration number limit
reached), but never 2
(a problem with the constraints). A fatal
error is raised if repeated runs of parafac
do
not return a (semi-)successfully fitted model.
After the PARAFAC decomposition is calculated, the scores are
multiplied by the scales
attribute of the X
object,
making them represent the cube with scaling undone. Use
feemscale(remember = FALSE)
if you don't want to undo
the scaling.
The output
option is fixed to "best"
value. Obtaining
a list of alternative solutions can therefore be achieved by running:
replicate(n, feemparafac(..., nstart = 1), simplify = FALSE)
The subset
and envir
options are useful to repeatedly
perform PARAFAC on different subsets of the same FEEM cube, e.g. in
jack-knifing or split-half analysis. Since feemparafac
keeps
a reference to the its X
and envir
arguments, the use
of subset
should ensure that the same FEEM cube is referenced
from multiple feemparafac
objects instead of creating copies
of its subsets. Additionally, environment objects are not duplicated
on save
or load
, so storing
X
in an environment and passing it to multiple invocations of
feemparafac
will save a lot of memory when the results are
serialised together.
plot.feemparafac
provides sane defaults for lattice
options such as xlab
, ylab
, as.table
,
auto.key
, type
, cuts
, col.regions
, but
they can be overridden.
feemparafac |
An object of classes
Use |
plot.feemparafac |
A lattice plot object. Its |
coef.feemparafac |
A |
fitted.feemparafac |
A |
resid.feemparafac |
A |
X - fitted(X)<b>X</b> - <b>X̂</b>, with an additional
class feem.resid
set. Objects of this class are plotted with
a different default palette, see plot.feem.resid
.
Bro1997
The parafac
class structure;
write.openfluor
, feemcube
for methods
specific to values returned from this function.
The rescale
generic is re-exported from the
multiway package.
data(feems)
cube <- feemscale(feemscatter(cube, c(24, 14)), na.rm = TRUE)
(factors <- feemparafac(cube, nfac = 3, ctol = 1e-4))
plot(factors, 'image')
plot(factors, 'line')
head(coef(factors, 'loadings'))
str(coef(factors, 'all'))
str(feemcube(factors)) # original cube is retained
plot(fitted(factors))
plot(resid(factors))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.