Split-Half Analysis
Performs split-half analysis for Tucker3.
splithalfT3(X, n, m, p, r1, r2, r3, centopt, normopt, renormmode, wa_rel, wb_rel, wc_rel, addanal, conv, laba, labb, labc)
X | 
 Matrix (or data.frame coerced to a matrix) of order (  | 
n | 
 Number of   | 
m | 
 Number of   | 
p | 
 Number of   | 
r1 | 
 Number of extracted components for the   | 
r2 | 
 Number of extracted components for the   | 
r3 | 
 Number of extracted components for the   | 
centopt | 
 Centering option (see   | 
normopt | 
 Normalization option (see   | 
renormmode | 
 Renormalization option (see   | 
wa_rel | 
 Relative weight for simplicity of   | 
wb_rel | 
 Relative weight for simplicity of   | 
wc_rel | 
 Relative weight for simplicity of   | 
addanal | 
 Number of additional runs  | 
conv | 
 Convergence criterion  | 
laba | 
 Optional vector of length   | 
labb | 
 Optional vector of length   | 
labc | 
 Optional vector of length   | 
Afull | 
 Component matrix for the   | 
As1 | 
 Component matrix for the   | 
As2 | 
 Component matrix for the   | 
Bfull | 
 Component matrix for the   | 
Bs1 | 
 Component matrix for the   | 
Bs2 | 
 Component matrix for the   | 
Cfull | 
 Component matrix for the   | 
Cs1 | 
 Component matrix for the   | 
Cs2 | 
 Component matrix for the   | 
Kfull | 
 Matricized core array (frontal slices) (full data)  | 
Ks1 | 
 Matricized core array (frontal slices) (split n.1)  | 
Ks2 | 
 Matricized core array (frontal slices) (split n.2)  | 
Kss1 | 
 Matricized core array (frontal slices) (using full data solutions for A,B and C for split n.1)  | 
Kss2 | 
 Matricized core array (frontal slices) (using full data solutions for A,B and C for split n.2)  | 
Maria Antonietta Del Ferraro mariaantonietta.delferraro@yahoo.it 
 Henk A.L. Kiers h.a.l.kiers@rug.nl 
 Paolo Giordani paolo.giordani@uniroma1.it
P.M. Kroonenberg (2008). Applied Multiway Data Analysis. Wiley, New Jersey.
data(Bus) # labels for Bus data laba <- rownames(Bus) labb <- substr(colnames(Bus)[1:5],1,1) labc <- substr(colnames(Bus)[seq(1,ncol(Bus),5)],3,8) ## Not run: # Split-half analysis on T3 solution splitT3 <- splithalfT3(Bus, 7, 5, 37, 2, 2, 2, 0, 0, 0, 3, 3, 0, 5, 1e-6, laba, labb, labc) # Split-half analysis on T3 solution (when labels are not available) splitT3 <- splithalfT3(Bus, 7, 5, 37, 2, 2, 2, 0, 0, 0, 3, 3, 0, 5, 1e-6) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.