simultaneous {simuclustfactor}R Documentation

Simultaneous Model Constructor

Description

Initialize model object required by the simultaneous methods.

Usage

simultaneous(
  seed = NULL,
  verbose = TRUE,
  init = "svd",
  n_max_iter = 10,
  n_loops = 10,
  tol = 1e-05,
  U_i_g = NULL,
  B_j_q = NULL,
  C_k_r = NULL
)

Arguments

seed

Seed for random sequence generation.

verbose

Flag to display output result for each loop.

init

The initialization method for the model parameters. Values could be 'svd','random','twcfta' or 'twfcta' Defaults to svd.

n_max_iter

Maximum number of iterations to optimize objective function.

n_loops

Number of runs/loops in search of the global result.

tol

Acceptable tolerance level.

U_i_g

Membership function matrix for the objects.

B_j_q

Component matrix for the variables.

C_k_r

Component matrix for the occasions.

Details

Two simultaneous models T3Clus and 3FKMeans are the implemented methods.

Value

An object of class "simultaneous".

Note

The model finds the best partition described by the best orthogonal linear combinations of the variables and orthogonal linear combinations of the occasions.

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, 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.

See Also

fit.t3clus fit.3fkmeans fit.ct3clus tandem

Examples

simultaneous()


[Package simuclustfactor version 0.0.3 Index]