** Mx startup successful ** !@human; **MX-PC 1.70a** Job started on 06/06/21 at 16:07:11 ! Genetic Cholesky Model -- RAW DATA #define nvar=2 !number of examined phenotypes/ages #define nsib 2 ! number of sibs (twin = 2) G1: Model parameters The following MX script lines were read for group 1 G1: MODEL PARAMETERS Data Calc NGroups=4 Begin Matrices; X Lower nvar nvar Free ! genetic structure Y Lower nvar nvar Free ! common environmental structure Z Lower nvar nvar Free ! specific environmental structure !B Full 1 nvar Free ! means refers to the number of variables selected P Symm 4 4 ! interaction parameters I Iden 4 4 End Matrices; Specify P 0 0 0 91 0 0 0 92 0 0 st .5 X 1 1 1 Y 1 1 1 Z 1 1 1 ! provide starting values sqrt(var/3) st .5 X 1 2 2 Y 1 2 2 Z 1 2 2 ! st .5 X 1 2 2 Y 1 2 2 Z 1 2 2 ! st .1 B 1 1 1 ! based on means from SAS ! st .5 B 1 1 2 Begin Algebra; A= X*X' ; C= Y*Y' ; E= Z*Z' ; W= (I - P)~; End Algebra; End The following MX script lines were read for group 2 G2: MZ TWINS Data NInput_vars=62 ! number of variables in data file Missing=-999999 ! missing value = -1.00 NOTE: Missing value *string* set to '-999999' Rectangular File=P_factor.dat ! read in raw data file Rectangular continuous data read initiated Note: Maximum ordinal/rectangular record length is: 1000 Note: It be increased by maxrec= parameter on the data line. NOTE: Rectangular file contained 1660 records with data that contained a total of 56470 observations LABELS IFAM zygosity zygDich zyg sex_1 sex_2 P3_1 INT3_1 EXT3_1 P5_1 INT5_1 EXT5_1 P6_1 INT6_1 EXT6_1 P9_1 INT9_1 EXT9_1 P3_2 INT3_2 EXT3_2 P5_2 INT5_2 EXT5_2 P6_2 INT6_2 EXT6_2 P9_2 INT9_2 EXT9_2 P3R_1 P5R_1 P6R_1 P9R_1 P3R_2 P5R_2 P6R_2 P9R_2 P3res_1 P5res_1 P6res_1 P9res_1 EXT3res_1 EXT5res_1 EXT6res_1 EXT9res_1 INT3res_1 INT5res_1 INT6res_1 INT9res_1 P3res_2 P5res_2 P6res_2 P9res_2 EXT3res_2 EXT5res_2 EXT6res_2 EXT9res_2 INT3res_2 INT5res_2 INT6res_2 INT9res_2 ! Tell mx what is found in the datafile Select if zygDich = 1; ! select MZ twins NOTE: Select if yields 342 data vectors for analysis NOTE: Vectors contain a total of 12531 observations Select EXT3_1 EXT5_1 EXT3_2 EXT5_2; ! select a phenotype Matrices= Group 1 NOTE: Selection yields 313 data vectors for analysis NOTE: Vectors contain a total of 952 observations B Full 4 1 Free Means B/ Covariances W &( A+C+E | A+C _ A+C | A+C+E) ; Option RSidual End The following MX script lines were read for group 3 G3: DZ TWIN PAIRS Data NInput_vars=62 ! number of variables in data file Missing=-999999 ! missing value = -1.00 NOTE: Missing value *string* set to '-999999' Rectangular File=P_factor.dat ! read in raw data file Rectangular continuous data read initiated Note: Maximum ordinal/rectangular record length is: 1000 Note: It be increased by maxrec= parameter on the data line. NOTE: Rectangular file contained 1660 records with data that contained a total of 56470 observations LABELS IFAM zygosity zygDich zyg sex_1 sex_2 P3_1 INT3_1 EXT3_1 P5_1 INT5_1 EXT5_1 P6_1 INT6_1 EXT6_1 P9_1 INT9_1 EXT9_1 P3_2 INT3_2 EXT3_2 P5_2 INT5_2 EXT5_2 P6_2 INT6_2 EXT6_2 P9_2 INT9_2 EXT9_2 P3R_1 P5R_1 P6R_1 P9R_1 P3R_2 P5R_2 P6R_2 P9R_2 P3res_1 P5res_1 P6res_1 P9res_1 EXT3res_1 EXT5res_1 EXT6res_1 EXT9res_1 INT3res_1 INT5res_1 INT6res_1 INT9res_1 P3res_2 P5res_2 P6res_2 P9res_2 EXT3res_2 EXT5res_2 EXT6res_2 EXT9res_2 INT3res_2 INT5res_2 INT6res_2 INT9res_2 ! Tell mx what is found in the datafile Select if zygDich = 0; ! select DZ twins NOTE: Select if yields 1257 data vectors for analysis NOTE: Vectors contain a total of 43312 observations Select EXT3_1 EXT5_1 EXT3_2 EXT5_2; ! select a phenotype Matrices= Group 1 NOTE: Selection yields 1179 data vectors for analysis NOTE: Vectors contain a total of 3682 observations H Full 1 1 B Full 4 1 Free Means B/ Covariances W &( A+C+E | H@A+C _ H@A+C | A+C+E) ; Matrix H .5 Option RSidual Options NDecimals=4 End The following MX script lines were read for group 4 G4: Calculation of standardized solution Calculation Matrices= Group 1 I Iden nvar nvar *** WARNING! *** Matrix was previously defined for this group. Mx will redefine Begin Algebra; V= A+C+E; G= \sqrt(I.V)~*X; !!standardized genetic parameters K= \sqrt(I.V)~*Y; !standardized c parameters L= \sqrt(I.V)~*Z; !standardized e parameters D= \SQRT(\V2D(\D2V(A+C+E))); !PHENOTYPIC STAND DEV MATRIX ! M= D~*A*D~; !h2 on diag N= D~*C*D~; !c2 on diag O= D~*E*D~; !e2 on diag Q = \sqrt( I . A )~ * A * \sqrt( I . A )~; ! Genetic correlations same as ! Q= \STND(A); !rg R = \sqrt( I . C )~ * C * \sqrt( I . C )~; ! Shared environment correlations same as !R= \STND(C); !rc S = \sqrt( I . E )~ * E * \sqrt( I . E )~; ! Nonshared environment correlations same as !S= \STND(E); !re U = A%V _ C%V _ E%V; ! bivariate heritability and enviromentalities End Algebra; Label Col G a_stand a_stand Label Col K c_stand c_stand Label Col L e_stand e_stand Label Col M H2_1 H2_2 Label Col N C2_1 C2_2 Label Col O E2_1 E2_2 INTERVALS M 4 1 1 M 4 2 2 INTERVALS N 4 1 1 N 4 2 2 INTERVALS O 4 1 1 O 4 2 2 INTERVALS G 4 1 1 G 4 2 1 G 4 2 2 INTERVALS K 4 1 1 K 4 2 1 K 4 2 2 INTERVALS L 4 1 1 L4 2 1 L 4 2 2 INTERVALS Q 4 2 1 INTERVALS R 4 2 1 INTERVALS S 4 2 1 Intervals P 4 3 1 P 4 4 2 option ndecimals=2 Option sat=9654.101,4615 ! sat model Options Multiple ISSub End Summary of VL file data for group 2 EXT3_1 EXT5_1 EXT3_2 EXT5_2 Code 1.00 2.00 3.00 4.00 Number 291.00 185.00 291.00 185.00 Mean 0.00 0.04 0.05 0.05 Variance 0.46 0.49 0.47 0.45 Minimum -1.47 -1.26 -1.75 -1.39 Maximum 2.16 1.93 1.97 2.05 Summary of VL file data for group 3 EXT3_1 EXT5_1 EXT3_2 EXT5_2 Code 1.00 2.00 3.00 4.00 Number 1084.00 761.00 1080.00 757.00 Mean -0.04 0.01 0.07 0.05 Variance 0.55 0.55 0.54 0.59 Minimum -1.67 -1.53 -1.72 -1.47 Maximum 2.38 2.32 2.31 2.32 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 G1: Model parameters MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0 2 0 0 3 91 0 0 4 0 92 0 0 MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 2 G2: MZ TWINS MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is a FULL matrix of order 4 by 1 1 1 93 2 94 3 95 4 96 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0 2 0 0 3 91 0 0 4 0 92 0 0 MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 3 G3: DZ TWIN PAIRS MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is a FULL matrix of order 4 by 1 1 1 97 2 98 3 99 4 100 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0 2 0 0 3 91 0 0 4 0 92 0 0 MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 4 G4: Calculation of standardized solution MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX L This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX M This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX N This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX O This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0 2 0 0 3 91 0 0 4 0 92 0 0 MATRIX Q This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX R This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX U This is a computed FULL matrix of order 6 by 2 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 Mx starting optimization; number of parameters = 19 MX PARAMETER ESTIMATES GROUP NUMBER: 1 G1: Model parameters MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.41 0.29 2 0.29 0.32 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.02 -0.06 2 -0.06 0.16 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.13 0.03 2 0.03 0.12 MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 -0.27 0.00 0.00 4 0.00 -0.33 0.00 0.00 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.08 0.00 -0.29 0.00 2 0.00 1.12 0.00 -0.36 3 -0.29 0.00 1.08 0.00 4 0.00 -0.36 0.00 1.12 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.64 2 0.46 0.33 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.15 2 -0.40 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.35 2 0.09 0.34 GROUP NUMBER: 2 G2: MZ TWINS MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.41 0.29 2 0.29 0.32 MATRIX B This is a FULL matrix of order 4 by 1 1 1 -0.01 2 0.03 3 0.04 4 0.04 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.02 -0.06 2 -0.06 0.16 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.13 0.03 2 0.03 0.12 MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 -0.27 0.00 0.00 4 0.00 -0.33 0.00 0.00 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.08 0.00 -0.29 0.00 2 0.00 1.12 0.00 -0.36 3 -0.29 0.00 1.08 0.00 4 0.00 -0.36 0.00 1.12 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.64 2 0.46 0.33 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.15 2 -0.40 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.35 2 0.09 0.34 Vector of OBSERVED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean 0.00 0.04 0.05 0.05 Vector of EXPECTED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean -0.01 0.03 0.04 0.04 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX EXT3_1 EXT5_1 EXT3_2 EXT5_2 EXT3_1 0.42 EXT5_1 0.18 0.44 EXT3_2 0.19 0.12 0.42 EXT5_2 0.12 0.18 0.18 0.44 Function value of this group: 1810.13 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 G3: DZ TWIN PAIRS MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.41 0.29 2 0.29 0.32 MATRIX B This is a FULL matrix of order 4 by 1 1 1 -0.04 2 0.00 3 0.07 4 0.06 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.02 -0.06 2 -0.06 0.16 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.13 0.03 2 0.03 0.12 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.50 MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 -0.27 0.00 0.00 4 0.00 -0.33 0.00 0.00 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.08 0.00 -0.29 0.00 2 0.00 1.12 0.00 -0.36 3 -0.29 0.00 1.08 0.00 4 0.00 -0.36 0.00 1.12 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.64 2 0.46 0.33 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.15 2 -0.40 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.35 2 0.09 0.34 Vector of OBSERVED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean -0.04 0.01 0.07 0.05 Vector of EXPECTED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean -0.04 0.00 0.07 0.06 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX EXT3_1 EXT5_1 EXT3_2 EXT5_2 EXT3_1 0.55 EXT5_1 0.29 0.57 EXT3_2 -0.06 -0.08 0.55 EXT5_2 -0.08 -0.05 0.29 0.57 Function value of this group: 7843.98 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 4 G4: Calculation of standardized solution MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.41 0.29 2 0.29 0.32 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.02 -0.06 2 -0.06 0.16 MATRIX D This is a computed FULL matrix of order 2 by 2 [=\SQRT(\V2D(\D2V(A+C+E)))] 1 2 1 0.75 0.00 2 0.00 0.78 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.13 0.03 2 0.03 0.12 MATRIX G This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.V)~*X] A_STAND A_STAND 1 0.86 0.00 2 0.59 0.43 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.V)~*Y] C_STAND C_STAND 1 0.21 0.00 2 -0.52 0.00 MATRIX L This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.V)~*Z] E_STAND E_STAND 1 0.47 0.00 2 0.12 0.43 MATRIX M This is a computed FULL matrix of order 2 by 2 [=D~*A*D~] H2_1 H2_2 1 0.73 0.51 2 0.51 0.53 MATRIX N This is a computed FULL matrix of order 2 by 2 [=D~*C*D~] C2_1 C2_2 1 0.04 -0.11 2 -0.11 0.27 MATRIX O This is a computed FULL matrix of order 2 by 2 [=D~*E*D~] E2_1 E2_2 1 0.22 0.05 2 0.05 0.20 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 -0.27 0.00 0.00 4 0.00 -0.33 0.00 0.00 MATRIX Q This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.A)~*A*\SQRT(I.A)~] 1 2 1 1.00 0.81 2 0.81 1.00 MATRIX R This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.C)~*C*\SQRT(I.C)~] 1 2 1 1.00 -1.00 2 -1.00 1.00 MATRIX S This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.E)~*E*\SQRT(I.E)~] 1 2 1 1.00 0.26 2 0.26 1.00 MATRIX U This is a computed FULL matrix of order 6 by 2 [=A%V_C%V_E%V] 1 2 1 0.73 1.11 2 1.11 0.53 3 0.04 -0.24 4 -0.24 0.27 5 0.22 0.12 6 0.12 0.20 MATRIX V This is a computed FULL matrix of order 2 by 2 [=A+C+E] 1 2 1 0.56 0.26 2 0.26 0.61 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.08 0.00 -0.29 0.00 2 0.00 1.12 0.00 -0.36 3 -0.29 0.00 1.08 0.00 4 0.00 -0.36 0.00 1.12 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.64 2 0.46 0.33 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.15 2 -0.40 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.35 2 0.09 0.34 Your model has 19 estimated parameters and 4634 Observed statistics -2 times log-likelihood of data >>> 9654.101 Degrees of freedom >>>>>>>>>>>>>>>> 4615 Akaike's Information Criterion >>>> 424.101 Bayesian Information Criterion >>>>-12035.866 Sample size Adjusted BIC >>>> -4705.598 Deviance Information Criterion >>>> -7794.965 Saturated model fit* >>>>>>>>>>> 9654.101 Saturated model df* >>>>>>>>>>> 4615 Difference Chi-squared >>>>>>>> 0.000 Difference d.f. >>>>>>>>>>>>>>> 0 Probability incalculable Akaike's Information Criterion > 0.000 * Saturated model statistic supplied by user 20 Confidence intervals requested in group 4 Matrix Element Int. Estimate Lower Upper Lfail Ufail M 4 1 1 95.0 0.7327 0.4732 0.8056 0 1 0 1 M 4 2 2 95.0 0.5318 0.0716 0.7410 6 1 0 1 N 4 1 1 95.0 0.0426 0.0000 0.3787 0 0 6 2 N 4 2 2 95.0 0.2683 0.0133 0.8990 0 1 6 2 O 4 1 1 95.0 0.2247 0.1411 0.2908 0 1 0 1 O 4 2 2 95.0 0.1998 0.0274 0.3230 0 1 0 1 G 4 1 1 95.0 0.8560 0.6882 0.8976 6 1 0 1 G 4 2 1 95.0 0.5922 0.2224 0.7382 6 2 0 1 G 4 2 2 95.0 0.4256 0.1482 0.5847 0 1 0 1 K 4 1 1 95.0 0.2064 -0.6168 0.6168 6 1 0 1 K 4 2 1 95.0 -0.5180 -0.9490 0.9490 6 1 0 1 K 4 2 2 95.0 0.0000 -0.8250 0.8250 0 1 0 1 L 4 1 1 95.0 0.4740 0.3755 0.5392 0 1 6 1 L 4 2 1 95.0 0.1153 0.0384 0.1998 0 1 0 1 L 4 2 2 95.0 0.4319 0.1590 0.5469 6 1 0 1 Q 4 2 1 95.0 0.8120 0.6954 0.9461 0 1 0 1 R 4 2 1 95.0 -1.0000 -1.0000 1.0000 0 1 6 2 S 4 2 1 95.0 0.2579 0.1115 0.3909 6 1 0 1 P 4 3 1 95.0 -0.2692 -0.3935 -0.2233 0 1 0 1 P 4 4 2 95.0 -0.3254 -0.7082 -0.2131 6 2 0 1 This problem used 12.0% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.42 Execution 0: 0: 3:45.26 TOTAL 0: 0: 3:45.68 Total number of warnings issued: 1 ______________________________________________________________________________ save ace.mxs Multiple fit option in effect. The following MX script lines have been read: SAVE ACE.MXS ! drop SI get ace.mxs Note: 243543 binary records read drop 91 92 end Summary of VL file data for group 2 EXT3_1 EXT5_1 EXT3_2 EXT5_2 Code 1.00 2.00 3.00 4.00 Number 291.00 185.00 291.00 185.00 Mean 0.00 0.04 0.05 0.05 Variance 0.46 0.49 0.47 0.45 Minimum -1.47 -1.26 -1.75 -1.39 Maximum 2.16 1.93 1.97 2.05 Summary of VL file data for group 3 EXT3_1 EXT5_1 EXT3_2 EXT5_2 Code 1.00 2.00 3.00 4.00 Number 1084.00 761.00 1080.00 757.00 Mean -0.04 0.01 0.07 0.05 Variance 0.55 0.55 0.54 0.59 Minimum -1.67 -1.53 -1.72 -1.47 Maximum 2.38 2.32 2.31 2.32 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 G1: Model parameters MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 It has no free parameters specified MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 2 G2: MZ TWINS MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is a FULL matrix of order 4 by 1 1 1 93 2 94 3 95 4 96 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 It has no free parameters specified MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 3 G3: DZ TWIN PAIRS MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is a FULL matrix of order 4 by 1 1 1 97 2 98 3 99 4 100 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 It has no free parameters specified MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 4 G4: Calculation of standardized solution MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX L This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX M This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX N This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX O This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX P This is a SYMMETRIC matrix of order 4 by 4 It has no free parameters specified MATRIX Q This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX R This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX U This is a computed FULL matrix of order 6 by 2 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 Mx starting optimization; number of parameters = 17 MX PARAMETER ESTIMATES GROUP NUMBER: 1 G1: Model parameters MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.05 -0.01 2 -0.01 0.06 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.00 0.00 2 0.00 0.00 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.47 0.27 2 0.27 0.49 MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 0.00 0.00 0.00 4 0.00 0.00 0.00 0.00 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.00 0.00 0.00 0.00 2 0.00 1.00 0.00 0.00 3 0.00 0.00 1.00 0.00 4 0.00 0.00 0.00 1.00 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.23 2 -0.04 0.24 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.00 2 0.00 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.69 2 0.40 0.58 GROUP NUMBER: 2 G2: MZ TWINS MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.05 -0.01 2 -0.01 0.06 MATRIX B This is a FULL matrix of order 4 by 1 1 1 -0.01 2 0.03 3 0.04 4 0.03 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.00 0.00 2 0.00 0.00 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.47 0.27 2 0.27 0.49 MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 0.00 0.00 0.00 4 0.00 0.00 0.00 0.00 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.00 0.00 0.00 0.00 2 0.00 1.00 0.00 0.00 3 0.00 0.00 1.00 0.00 4 0.00 0.00 0.00 1.00 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.23 2 -0.04 0.24 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.00 2 0.00 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.69 2 0.40 0.58 Vector of OBSERVED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean 0.00 0.04 0.05 0.05 Vector of EXPECTED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean -0.01 0.03 0.04 0.03 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX EXT3_1 EXT5_1 EXT3_2 EXT5_2 EXT3_1 0.53 EXT5_1 0.27 0.55 EXT3_2 0.05 -0.01 0.53 EXT5_2 -0.01 0.06 0.27 0.55 Function value of this group: 1889.16 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 G3: DZ TWIN PAIRS MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.05 -0.01 2 -0.01 0.06 MATRIX B This is a FULL matrix of order 4 by 1 1 1 -0.04 2 0.00 3 0.07 4 0.06 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.00 0.00 2 0.00 0.00 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.47 0.27 2 0.27 0.49 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.50 MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 0.00 0.00 0.00 4 0.00 0.00 0.00 0.00 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.00 0.00 0.00 0.00 2 0.00 1.00 0.00 0.00 3 0.00 0.00 1.00 0.00 4 0.00 0.00 0.00 1.00 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.23 2 -0.04 0.24 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.00 2 0.00 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.69 2 0.40 0.58 Vector of OBSERVED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean -0.04 0.01 0.07 0.05 Vector of EXPECTED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean -0.04 0.00 0.07 0.06 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX EXT3_1 EXT5_1 EXT3_2 EXT5_2 EXT3_1 0.53 EXT5_1 0.27 0.55 EXT3_2 0.03 0.00 0.53 EXT5_2 0.00 0.03 0.27 0.55 Function value of this group: 7891.61 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 4 G4: Calculation of standardized solution MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.05 -0.01 2 -0.01 0.06 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.00 0.00 2 0.00 0.00 MATRIX D This is a computed FULL matrix of order 2 by 2 [=\SQRT(\V2D(\D2V(A+C+E)))] 1 2 1 0.73 0.00 2 0.00 0.74 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.47 0.27 2 0.27 0.49 MATRIX G This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.V)~*X] A_STAND A_STAND 1 0.32 0.00 2 -0.05 0.32 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.V)~*Y] C_STAND C_STAND 1 0.00 0.00 2 0.00 0.00 MATRIX L This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.V)~*Z] E_STAND E_STAND 1 0.95 0.00 2 0.54 0.78 MATRIX M This is a computed FULL matrix of order 2 by 2 [=D~*A*D~] H2_1 H2_2 1 0.10 -0.02 2 -0.02 0.10 MATRIX N This is a computed FULL matrix of order 2 by 2 [=D~*C*D~] C2_1 C2_2 1 0.00 0.00 2 0.00 0.00 MATRIX O This is a computed FULL matrix of order 2 by 2 [=D~*E*D~] E2_1 E2_2 1 0.90 0.51 2 0.51 0.90 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 0.00 0.00 0.00 4 0.00 0.00 0.00 0.00 MATRIX Q This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.A)~*A*\SQRT(I.A)~] 1 2 1 1.00 -0.15 2 -0.15 1.00 MATRIX R This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.C)~*C*\SQRT(I.C)~] 1 2 1 1.00 -0.34 2 -0.34 1.00 MATRIX S This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.E)~*E*\SQRT(I.E)~] 1 2 1 1.00 0.57 2 0.57 1.00 MATRIX U This is a computed FULL matrix of order 6 by 2 [=A%V_C%V_E%V] 1 2 1 0.10 -0.03 2 -0.03 0.10 3 0.00 0.00 4 0.00 0.00 5 0.90 1.03 6 1.03 0.90 MATRIX V This is a computed FULL matrix of order 2 by 2 [=A+C+E] 1 2 1 0.53 0.27 2 0.27 0.55 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.00 0.00 0.00 0.00 2 0.00 1.00 0.00 0.00 3 0.00 0.00 1.00 0.00 4 0.00 0.00 0.00 1.00 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.23 2 -0.04 0.24 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.00 2 0.00 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.69 2 0.40 0.58 Your model has 17 estimated parameters and 4634 Observed statistics -2 times log-likelihood of data >>> 9780.775 Degrees of freedom >>>>>>>>>>>>>>>> 4617 Akaike's Information Criterion >>>> 546.775 Bayesian Information Criterion >>>>-11979.837 Sample size Adjusted BIC >>>> -4646.392 Deviance Information Criterion >>>> -7737.098 Saturated model fit* >>>>>>>>>>> 9654.101 Saturated model df* >>>>>>>>>>> 4615 Difference Chi-squared >>>>>>>> 126.674 Difference d.f. >>>>>>>>>>>>>>> 2 Probability >>>>>>>>>>>>>>>>>>>> 0.000 Akaike's Information Criterion > 122.674 * Saturated model statistic supplied by user Submodel fit* >>>>>>>>>>> 9654.101 Submodel df* >>>>>>>>>>> 4615 Difference Chi-squared >>>>>>>> -126.674 Difference d.f. >>>>>>>>>>>>>>> -2 Probability incalculable Akaike's Information Criterion > -122.674 * Submodel statistic computed earlier in this job 20 Confidence intervals requested in group 4 Matrix Element Int. Estimate Lower Upper Lfail Ufail M 4 1 1 95.0 0.1032 0.0167 0.1939 0 1 0 1 M 4 2 2 95.0 0.1049 0.0016 0.2135 0 1 0 1 N 4 1 1 95.0 0.0000 0.0000 0.0216 0 0 0 1 N 4 2 2 95.0 0.0000 0.0000 0.0475 0 0 0 1 O 4 1 1 95.0 0.8968 0.8061 0.9833 0 1 0 1 O 4 2 2 95.0 0.8951 0.7865 0.9909 0 1 0 1 G 4 1 1 95.0 0.3212 0.1289 0.4403 0 1 0 1 G 4 2 1 95.0 -0.0474 -0.3546 0.1845 0 1 0 1 G 4 2 2 95.0 0.3204 -0.4539 0.4539 0 1 0 1 K 4 1 1 95.0 0.0000 -0.1472 0.1472 0 1 0 1 K 4 2 1 95.0 0.0000 -0.2182 0.2182 0 1 0 1 K 4 2 2 95.0 0.0000 -0.2177 0.2177 0 1 0 1 L 4 1 1 95.0 0.9470 0.8979 0.9916 0 1 0 1 L 4 2 1 95.0 0.5359 0.4559 0.6087 0 1 0 1 L 4 2 2 95.0 0.7797 0.7254 0.8336 0 1 0 1 Q 4 2 1 95.0 -0.1462 -1.0000 0.4743 0 0 6 2 R 4 2 1 95.0 -0.3417 -1.0000 1.0000 0 0 0 0 S 4 2 1 95.0 0.5665 0.4962 0.6289 0 1 0 1 P 4 3 1 95.0 0.0000 0.0000 0.0000 0 0 0 0 Note: above element not modifiable P 4 4 2 95.0 0.0000 0.0000 0.0000 0 0 0 0 Note: above element not modifiable This problem used 12.0% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.12 Execution 0: 0: 2:19.21 TOTAL 0: 0: 2:19.33 Total number of warnings issued: 1 ______________________________________________________________________________ ! drop c on time 1 !get ace.mxs !drop 4 5 !end !drop c on time 2 !get ace.mxs !drop 5 6 !end !drop a time 1 !get ace.mxs !drop 1 2 !end !drop a time 2 !get ace.mxs !drop 2 3 !end !drop all a !get ace.mxs !drop 1 2 3 !end ! drop all c get ace.mxs Multiple fit option in effect. The following MX script lines have been read: GET ACE.MXS Note: 243543 binary records read drop 4 5 6 end Summary of VL file data for group 2 EXT3_1 EXT5_1 EXT3_2 EXT5_2 Code 1.00 2.00 3.00 4.00 Number 291.00 185.00 291.00 185.00 Mean 0.00 0.04 0.05 0.05 Variance 0.46 0.49 0.47 0.45 Minimum -1.47 -1.26 -1.75 -1.39 Maximum 2.16 1.93 1.97 2.05 Summary of VL file data for group 3 EXT3_1 EXT5_1 EXT3_2 EXT5_2 Code 1.00 2.00 3.00 4.00 Number 1084.00 761.00 1080.00 757.00 Mean -0.04 0.01 0.07 0.05 Variance 0.55 0.55 0.54 0.59 Minimum -1.67 -1.53 -1.72 -1.47 Maximum 2.38 2.32 2.31 2.32 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 G1: Model parameters MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0 2 0 0 3 91 0 0 4 0 92 0 0 MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 2 G2: MZ TWINS MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is a FULL matrix of order 4 by 1 1 1 93 2 94 3 95 4 96 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0 2 0 0 3 91 0 0 4 0 92 0 0 MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 3 G3: DZ TWIN PAIRS MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is a FULL matrix of order 4 by 1 1 1 97 2 98 3 99 4 100 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0 2 0 0 3 91 0 0 4 0 92 0 0 MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 4 G4: Calculation of standardized solution MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX L This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX M This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX N This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX O This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0 2 0 0 3 91 0 0 4 0 92 0 0 MATRIX Q This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX R This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX U This is a computed FULL matrix of order 6 by 2 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 Mx starting optimization; number of parameters = 16 MX PARAMETER ESTIMATES GROUP NUMBER: 1 G1: Model parameters MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.41 0.21 2 0.21 0.40 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.00 0.00 2 0.00 0.00 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.15 0.07 2 0.07 0.18 MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 -0.23 0.00 0.00 4 0.00 -0.20 0.00 0.00 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.06 0.00 -0.24 0.00 2 0.00 1.04 0.00 -0.20 3 -0.24 0.00 1.06 0.00 4 0.00 -0.20 0.00 1.04 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.64 2 0.32 0.54 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.00 2 0.00 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.38 2 0.18 0.39 GROUP NUMBER: 2 G2: MZ TWINS MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.41 0.21 2 0.21 0.40 MATRIX B This is a FULL matrix of order 4 by 1 1 1 -0.01 2 0.03 3 0.04 4 0.03 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.00 0.00 2 0.00 0.00 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.15 0.07 2 0.07 0.18 MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 -0.23 0.00 0.00 4 0.00 -0.20 0.00 0.00 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.06 0.00 -0.24 0.00 2 0.00 1.04 0.00 -0.20 3 -0.24 0.00 1.06 0.00 4 0.00 -0.20 0.00 1.04 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.64 2 0.32 0.54 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.00 2 0.00 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.38 2 0.18 0.39 Vector of OBSERVED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean 0.00 0.04 0.05 0.05 Vector of EXPECTED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean -0.01 0.03 0.04 0.03 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX EXT3_1 EXT5_1 EXT3_2 EXT5_2 EXT3_1 0.44 EXT5_1 0.22 0.48 EXT3_2 0.19 0.11 0.44 EXT5_2 0.11 0.20 0.22 0.48 Function value of this group: 1815.10 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 G3: DZ TWIN PAIRS MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.41 0.21 2 0.21 0.40 MATRIX B This is a FULL matrix of order 4 by 1 1 1 -0.04 2 0.00 3 0.07 4 0.06 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.00 0.00 2 0.00 0.00 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.15 0.07 2 0.07 0.18 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.50 MATRIX I This is an IDENTITY matrix of order 4 by 4 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 -0.23 0.00 0.00 4 0.00 -0.20 0.00 0.00 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.06 0.00 -0.24 0.00 2 0.00 1.04 0.00 -0.20 3 -0.24 0.00 1.06 0.00 4 0.00 -0.20 0.00 1.04 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.64 2 0.32 0.54 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.00 2 0.00 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.38 2 0.18 0.39 Vector of OBSERVED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean -0.04 0.01 0.07 0.05 Vector of EXPECTED means EXT3_1 EXT5_1 EXT3_2 EXT5_2 Mean -0.04 0.00 0.07 0.06 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX EXT3_1 EXT5_1 EXT3_2 EXT5_2 EXT3_1 0.54 EXT5_1 0.27 0.57 EXT3_2 -0.04 -0.01 0.54 EXT5_2 -0.01 -0.02 0.27 0.57 Function value of this group: 7870.87 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 4 G4: Calculation of standardized solution MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.41 0.21 2 0.21 0.40 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.00 0.00 2 0.00 0.00 MATRIX D This is a computed FULL matrix of order 2 by 2 [=\SQRT(\V2D(\D2V(A+C+E)))] 1 2 1 0.74 0.00 2 0.00 0.76 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.15 0.07 2 0.07 0.18 MATRIX G This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.V)~*X] A_STAND A_STAND 1 0.86 0.00 2 0.42 0.71 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.V)~*Y] C_STAND C_STAND 1 0.00 0.00 2 0.00 0.00 MATRIX L This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.V)~*Z] E_STAND E_STAND 1 0.51 0.00 2 0.24 0.51 MATRIX M This is a computed FULL matrix of order 2 by 2 [=D~*A*D~] H2_1 H2_2 1 0.74 0.36 2 0.36 0.69 MATRIX N This is a computed FULL matrix of order 2 by 2 [=D~*C*D~] C2_1 C2_2 1 0.00 0.00 2 0.00 0.00 MATRIX O This is a computed FULL matrix of order 2 by 2 [=D~*E*D~] E2_1 E2_2 1 0.26 0.12 2 0.12 0.31 MATRIX P This is a SYMMETRIC matrix of order 4 by 4 1 2 3 4 1 0.00 2 0.00 0.00 3 -0.23 0.00 0.00 4 0.00 -0.20 0.00 0.00 MATRIX Q This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.A)~*A*\SQRT(I.A)~] 1 2 1 1.00 0.51 2 0.51 1.00 MATRIX R This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.C)~*C*\SQRT(I.C)~] 1 2 1 0.00 0.00 2 0.00 0.00 MATRIX S This is a computed FULL matrix of order 2 by 2 [=\SQRT(I.E)~*E*\SQRT(I.E)~] 1 2 1 1.00 0.43 2 0.43 1.00 MATRIX U This is a computed FULL matrix of order 6 by 2 [=A%V_C%V_E%V] 1 2 1 0.74 0.75 2 0.75 0.69 3 0.00 0.00 4 0.00 0.00 5 0.26 0.25 6 0.25 0.31 MATRIX V This is a computed FULL matrix of order 2 by 2 [=A+C+E] 1 2 1 0.55 0.28 2 0.28 0.58 MATRIX W This is a computed FULL matrix of order 4 by 4 [=(I-P)~] 1 2 3 4 1 1.06 0.00 -0.24 0.00 2 0.00 1.04 0.00 -0.20 3 -0.24 0.00 1.06 0.00 4 0.00 -0.20 0.00 1.04 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.64 2 0.32 0.54 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.00 2 0.00 0.00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.38 2 0.18 0.39 Your model has 16 estimated parameters and 4634 Observed statistics -2 times log-likelihood of data >>> 9685.965 Degrees of freedom >>>>>>>>>>>>>>>> 4618 Akaike's Information Criterion >>>> 449.965 Bayesian Information Criterion >>>>-12030.896 Sample size Adjusted BIC >>>> -4695.863 Deviance Information Criterion >>>> -7787.238 Saturated model fit* >>>>>>>>>>> 9654.101 Saturated model df* >>>>>>>>>>> 4615 Difference Chi-squared >>>>>>>> 31.864 Difference d.f. >>>>>>>>>>>>>>> 3 Probability >>>>>>>>>>>>>>>>>>>> 0.000 Akaike's Information Criterion > 25.864 * Saturated model statistic supplied by user Submodel fit* >>>>>>>>>>> 9654.101 Submodel df* >>>>>>>>>>> 4615 Difference Chi-squared >>>>>>>> -31.864 Difference d.f. >>>>>>>>>>>>>>> -3 Probability incalculable Akaike's Information Criterion > -25.864 * Submodel statistic computed earlier in this job 20 Confidence intervals requested in group 4 Matrix Element Int. Estimate Lower Upper Lfail Ufail M 4 1 1 95.0 0.7357 0.6621 0.7892 0 1 0 1 M 4 2 2 95.0 0.6870 0.5705 0.7643 0 1 0 1 N 4 1 1 95.0 0.0000 0.0000 0.0000 0 0 0 0 N 4 2 2 95.0 0.0000 0.0000 0.0000 0 0 0 0 O 4 1 1 95.0 0.2643 0.2108 0.3379 0 1 0 1 O 4 2 2 95.0 0.3130 0.2357 0.4295 0 1 6 1 G 4 1 1 95.0 0.8578 0.8137 0.8884 0 1 0 1 G 4 2 1 95.0 0.4248 0.3506 0.4882 0 1 6 1 G 4 2 2 95.0 0.7117 0.6477 0.7576 0 1 0 1 K 4 1 1 95.0 0.0000 0.0000 0.0000 0 0 0 0 K 4 2 1 95.0 0.0000 0.0000 0.0000 0 0 0 0 K 4 2 2 95.0 0.0000 0.0000 0.0000 0 0 0 0 L 4 1 1 95.0 0.5141 0.4591 0.5813 6 1 0 1 L 4 2 1 95.0 0.2379 0.1613 0.3275 0 1 0 1 L 4 2 2 95.0 0.5063 0.4444 0.5840 0 1 0 1 Q 4 2 1 95.0 0.5125 0.4411 0.5768 0 1 0 1 R 4 2 1 95.0 0.0000 0.0000 0.0000 0 0 0 0 S 4 2 1 95.0 0.4253 0.3104 0.5268 0 1 0 1 P 4 3 1 95.0 -0.2298 -0.2638 -0.1930 0 1 6 1 P 4 4 2 95.0 -0.1964 -0.2395 -0.1476 0 1 0 1 This problem used 12.0% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.05 Execution 0: 0: 1:35.90 TOTAL 0: 0: 1:35.95 Total number of warnings issued: 1 ______________________________________________________________________________ ! drop both a and c !get ace.mxs !drop 1 2 3 4 5 6 !end ______________________________________________________________________________