X: N-way data array. Missing data are allowed (see Note).
nfac: Number of factors.
nstart: Number of random starts.
maxit: Maximum number of iterations.
ctol: Convergence tolerance (R^2 change).
parallel: Logical indicating if parLapply should be used. See Examples.
cl: Cluster created by makeCluster. Only used when parallel=TRUE.
output: Output the best solution (default) or output all nstart solutions.
verbose: If TRUE, fitting progress is printed via txtProgressBar. Ignored if parallel=TRUE.
Details
This is an N-way extension of the parafac function without constraints. The form of the CPD for 3-way and 4-way data is given in the documentation for the parafac function. For N > 4, the CPD has the form
where A.n are the n-th mode's weights for n = 1, ..., N, and E is the N-way residual array. The summation is for r = seq(1,R).
Returns
A: List of length N containing the weights for each mode.
SSE: Sum of Squared Errors.
Rsq: R-squared value.
GCV: Generalized Cross-Validation.
edf: Effective degrees of freedom.
iter: Number of iterations.
cflag: Convergence flag. See Note.
References
Harshman, R. A. (1970). Foundations of the PARAFAC procedure: Models and conditions for an "explanatory" multimodal factor analysis. UCLA Working Papers in Phonetics, 16, 1-84.
Harshman, R. A., & Lundy, M. E. (1994). PARAFAC: Parallel factor analysis. Computational Statistics and Data Analysis, 18, 39-72.
Hitchcock, F. L. (1927). The expression of a tensor or a polyadic as a sum of products. Journal of Mathematics and Physics, 6, 164-189.
Missing data should be specified as NA values in the input X. The missing data are randomly initialized and then iteratively imputed as a part of the algorithm.
Output cflag gives convergence information: cflag = 0 if algorithm converged normally and cflag = 1 if maximum iteration limit was reached before convergence.
Warnings
The algorithm can perform poorly if the number of factors nfac is set too large.
See Also
The parafac function provides a more flexible implemention for 3-way and 4-way arrays.
The fitted.cpd function creates the model-implied fitted values from a fit "cpd" object.
The resign.cpd function can be used to resign factors from a fit "cpd" object.
The rescale.cpd function can be used to rescale factors from a fit "cpd" object.
The reorder.cpd function can be used to reorder factors from a fit "cpd" object.