fit.3fkmeans {simuclustfactor}R Documentation

3FKMeans Model

Description

Implements simultaneous version of TWFCTA

Usage

fit.3fkmeans(model, X_i_jk, full_tensor_shape, reduced_tensor_shape)

## S4 method for signature 'simultaneous'
fit.3fkmeans(model, X_i_jk, full_tensor_shape, reduced_tensor_shape)

Arguments

model

Initialized simultaneous model.

X_i_jk

Matricized tensor along mode-1 (I objects).

full_tensor_shape

Dimensions of the tensor in full-space.

reduced_tensor_shape

Dimensions of tensor in the reduced-space.

Details

The procedure performs simultaneously the sequential TWFCTA model. The model finds B_j_q and C_k_r such that the within-clusters deviance of the component scores is minimized.

Value

Output attributes accessible via the '@' operator.

References

Tucker L (1966). “Some mathematical notes on three-mode factor analysis.” Psychometrika, 31(3), 279-311. doi:10.1007/BF02289464, https://ideas.repec.org/a/spr/psycho/v31y1966i3p279-311.html. Vichi M, Kiers HAL (2001). “Factorial k-means analysis for two-way data.” Computational Statistics and Data Analysis, 37(1), 49-64. https://EconPapers.repec.org/RePEc:eee:csdana:v:37:y:2001:i:1:p:49-64. Vichi M, Rocci R, Kiers H (2007). “Simultaneous Component and Clustering Models for Three-way Data: Within and Between Approaches.” Journal of Classification, 24, 71-98. doi:10.1007/s00357-007-0006-x.

Examples

X_i_jk = generate_dataset()$X_i_jk
model = simultaneous()
tfkmeans = fit.3fkmeans(model, X_i_jk, c(8,5,4), c(3,3,2))


[Package simuclustfactor version 0.0.3 Index]