! Estimate genetic and environmental components - ACED model ! OZ BMI data - older males The following MX script lines were read for group 1 #NGROUPS 8 Note: #NGroup set number of groups to 8 #DEFINE NVAR 1 TITLE G1: MODEL PARAMETERS CALCULATION BEGIN MATRICES; X LOWER NVAR NVAR FREE ! ADDITIVE GENETIC PATH, A Y LOWER NVAR NVAR ! COMMON ENVIRONMENTAL PATH, C Z LOWER NVAR NVAR FREE ! SPECIFIC ENVIRONMENTAL PATH, E W LOWER NVAR NVAR FREE ! DOMINANCE GENETIC PATH, D M FULL 1 1 FREE H FULL 1 1 ! SCALAR, 0.5 Q FULL 1 1 ! SCALAR, 0.25 END MATRICES; LABEL ROW X ADD_GEN LABEL ROW Y COMM_ENV LABEL ROW Z SPEC_ENV LABEL ROW W DOM_GEN MATRIX H .5 MATRIX Q .25 BEGIN ALGEBRA; A= X*X'; ! ADDITIVE GENETIC VARIANCE, A^2 C= Y*Y'; ! COMMON ENVIRONMENTAL VARIANCE, C^2 E= Z*Z'; ! SPECIFIC ENVIRONMENTAL VARIANCE, E^2 D= W*W'; ! DOMINANCE GENETIC VARIANCE, D^2 END ALGEBRA; END GROUP The following MX script lines were read for group 2 TITLE G2: MZ DATA YOUNGER COHORT #INCLUDE OZBMI2.DAT Note: Opening #include file 1 ozbmi2.dat DATA NINPUT=13 RECTANGULAR FILE=OZBMI2.REC Rectangular continuous data read initiated MAXRSZ= 1000 NOTE: Rectangular file contained 3808 records with data that contained a total of 48661 observations LABELS FAM AGECAT AGE ZYG PART WT1 WT2 HT1 HT2 HTWT1 HTWT2 BMI1 BMI2 Note: Closing #include file 1 SELECT IF ZYG =2 !MZM NOTE: Select if yields 567 data vectors for analysis NOTE: Vectors contain a total of 7243 observations SELECT IF AGECAT =1 NOTE: Select if yields 273 data vectors for analysis NOTE: Vectors contain a total of 3469 observations SELECT BMI1 BMI2 ; BEGIN MATRICES = GROUP 1; ! COPY ALL MATRICES FROM GROUP 1, BOTH DECLARED AND COMPUTED NOTE: Selection yields 272 data vectors for analysis NOTE: Vectors contain a total of 523 observations END MATRICES; MEANS M|M; ! 1X2 VECTOR OF EXPECTED MEANS COVARIANCE ! 2X2 COVARIANCE MATRIX A+C+E+D | A+C+D _ A+C+D | A+C+E+D ; OPTION RSIDUALS; END The following MX script lines were read for group 3 TITLE G3: DZ DATA YOUNGER COHORT #INCLUDE OZBMI2.DAT Note: Opening #include file 1 ozbmi2.dat DATA NINPUT=13 RECTANGULAR FILE=OZBMI2.REC Rectangular continuous data read initiated MAXRSZ= 1000 NOTE: Rectangular file contained 3808 records with data that contained a total of 48661 observations LABELS FAM AGECAT AGE ZYG PART WT1 WT2 HT1 HT2 HTWT1 HTWT2 BMI1 BMI2 Note: Closing #include file 1 SELECT IF ZYG =4 !DZM NOTE: Select if yields 352 data vectors for analysis NOTE: Vectors contain a total of 4464 observations SELECT IF AGECAT =1 NOTE: Select if yields 206 data vectors for analysis NOTE: Vectors contain a total of 2595 observations SELECT BMI1 BMI2 ; BEGIN MATRICES = GROUP 1; NOTE: Selection yields 203 data vectors for analysis NOTE: Vectors contain a total of 387 observations END MATRICES; MEANS M|M; COVARIANCE A+C+E+D | H@A+C+Q@D _ H@A+C+Q@D | A+C+E+D; OPTION RSIDUALS END The following MX script lines were read for group 4 TITLE G4: STANDARDIZATION YOUNG CALCULATION BEGIN MATRICES = GROUP 1; END MATRICES; START .6 ALL ! START ALL FREE PARAMETERS AT .6 START 20 M 1 1 1 ! START FREE PARAMERS FOR MEANS AT 20 (OVERWRITE PREVIOUS STATEMENT) BEGIN ALGEBRA; V=A+C+E+D; ! TOTAL VARIANCE P=A|C|E|D; ! CONCATENATE PARAMETER ESTIMATES S=P@V~; ! STANDARDIZED PARAMETER ESTIMATES END ALGEBRA; ! Interval S 1 1 - S 1 4 ! 95% confidence intervals around variance components OPTION NDECIMALS=4 END The following MX script lines were read for group 5 TITLE G5: MODEL PARAMETERS CALCULATION BEGIN MATRICES; X LOWER NVAR NVAR FREE ! ADDITIVE GENETIC PATH, A Y LOWER NVAR NVAR ! COMMON ENVIRONMENTAL PATH, C Z LOWER NVAR NVAR FREE ! SPECIFIC ENVIRONMENTAL PATH, E W LOWER NVAR NVAR FREE ! DOMINANCE GENETIC PATH, D M FULL 1 1 FREE H FULL 1 1 ! SCALAR, 0.5 Q FULL 1 1 ! SCALAR, 0.25 END MATRICES; LABEL ROW X ADD_GEN LABEL ROW Y COMM_ENV LABEL ROW Z SPEC_ENV LABEL ROW W DOM_GEN MATRIX H .5 MATRIX Q .25 BEGIN ALGEBRA; A= X*X'; ! ADDITIVE GENETIC VARIANCE, A^2 C= Y*Y'; ! COMMON ENVIRONMENTAL VARIANCE, C^2 E= Z*Z'; ! SPECIFIC ENVIRONMENTAL VARIANCE, E^2 D= W*W'; ! DOMINANCE GENETIC VARIANCE, D^2 END ALGEBRA; END GROUP The following MX script lines were read for group 6 TITLE G6: MZ DATA OLDER COHORT #INCLUDE OZBMI2.DAT Note: Opening #include file 1 ozbmi2.dat DATA NINPUT=13 RECTANGULAR FILE=OZBMI2.REC Rectangular continuous data read initiated MAXRSZ= 1000 NOTE: Rectangular file contained 3808 records with data that contained a total of 48661 observations LABELS FAM AGECAT AGE ZYG PART WT1 WT2 HT1 HT2 HTWT1 HTWT2 BMI1 BMI2 Note: Closing #include file 1 SELECT IF ZYG =2 !MZM NOTE: Select if yields 567 data vectors for analysis NOTE: Vectors contain a total of 7243 observations SELECT IF AGECAT =2 NOTE: Select if yields 294 data vectors for analysis NOTE: Vectors contain a total of 3774 observations SELECT BMI1 BMI2 ; BEGIN MATRICES = GROUP 5; ! COPY ALL MATRICES FROM GROUP 1, BOTH DECLARED AND COMPUTED NOTE: Selection yields 293 data vectors for analysis NOTE: Vectors contain a total of 574 observations END MATRICES; MEANS M|M; ! 1X2 VECTOR OF EXPECTED MEANS COVARIANCE ! 2X2 COVARIANCE MATRIX A+C+E+D | A+C+D _ A+C+D | A+C+E+D ; OPTION RSIDUALS; END The following MX script lines were read for group 7 TITLE G7: DZ DATA OLDER COHORT #INCLUDE OZBMI2.DAT Note: Opening #include file 1 ozbmi2.dat DATA NINPUT=13 RECTANGULAR FILE=OZBMI2.REC Rectangular continuous data read initiated MAXRSZ= 1000 NOTE: Rectangular file contained 3808 records with data that contained a total of 48661 observations LABELS FAM AGECAT AGE ZYG PART WT1 WT2 HT1 HT2 HTWT1 HTWT2 BMI1 BMI2 Note: Closing #include file 1 SELECT IF ZYG =4 !DZM NOTE: Select if yields 352 data vectors for analysis NOTE: Vectors contain a total of 4464 observations SELECT IF AGECAT =2 NOTE: Select if yields 146 data vectors for analysis NOTE: Vectors contain a total of 1869 observations SELECT BMI1 BMI2 ; BEGIN MATRICES = GROUP 5; NOTE: Selection yields 146 data vectors for analysis NOTE: Vectors contain a total of 283 observations END MATRICES; MEANS M|M; COVARIANCE A+C+E+D | H@A+C+Q@D _ H@A+C+Q@D | A+C+E+D; OPTION RSIDUALS END The following MX script lines were read for group 8 TITLE G8: STANDARDIZATION OLD CALCULATION BEGIN MATRICES = GROUP 5; END MATRICES; START .6 ALL ! START ALL FREE PARAMETERS AT .6 START 20 M 5 1 1 ! START FREE PARAMERS FOR MEANS AT 20 (OVERWRITE PREVIOUS STATEMENT) BEGIN ALGEBRA; V=A+C+E+D; ! TOTAL VARIANCE P=A|C|E|D; ! CONCATENATE PARAMETER ESTIMATES S=P@V~; ! STANDARDIZED PARAMETER ESTIMATES END ALGEBRA; ! Interval S 1 1 - S 1 4 ! 95% confidence intervals around variance components OPTION NDECIMALS=4 OPTION MULTIPLE END Summary of VL file data for group 2 BMI1 BMI2 Code 1.0000 2.0000 Number 261.0000 262.0000 Mean 21.6211 21.6262 Variance 0.5863 0.5659 Minimum 19.2638 19.7719 Maximum 23.6588 23.8362 Summary of VL file data for group 3 BMI1 BMI2 Code 1.0000 2.0000 Number 191.0000 196.0000 Mean 21.7920 21.7580 Variance 0.7048 0.7980 Minimum 19.6939 19.8223 Maximum 24.4494 26.0152 Summary of VL file data for group 6 BMI1 BMI2 Code 1.0000 2.0000 Number 291.0000 283.0000 Mean 22.2703 22.2969 Variance 0.5473 0.6556 Minimum 20.0883 19.9574 Maximum 24.0782 24.9730 Summary of VL file data for group 7 BMI1 BMI2 Code 1.0000 2.0000 Number 143.0000 140.0000 Mean 22.2613 22.2181 Variance 0.6646 0.5932 Minimum 19.7902 20.6277 Maximum 24.5942 24.3487 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 3 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 3 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 3 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 3 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 7 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 7 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 7 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 7 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 Mx starting optimization; number of parameters = 8 MX PARAMETER ESTIMATES GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.2533 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.2814 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1374 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6949 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN -0.5304 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.5033 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3706 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.2533 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.2814 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1374 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6949 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN -0.5304 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.5033 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3706 Vector of OBSERVED means BMI1 BMI2 Mean 21.6211 21.6262 Vector of EXPECTED means BMI1 BMI2 Mean 21.6949 21.6949 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6721 BMI2 0.5347 0.6721 Function value of this group: 979.3227 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.2533 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.2814 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1374 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6949 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN -0.5304 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.5033 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3706 Vector of OBSERVED means BMI1 BMI2 Mean 21.7920 21.7580 Vector of EXPECTED means BMI1 BMI2 Mean 21.6949 21.6949 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6721 BMI2 0.1970 0.6721 Function value of this group: 973.3996 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.2533 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.2814 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1374 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6949 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.2533 0.0000 0.1374 0.2814 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.3769 0.0000 0.2044 0.4187 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6721 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN -0.5304 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.5033 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3706 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4330 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1815 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0001 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6580 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4261 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4330 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1815 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0001 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6580 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4261 Vector of OBSERVED means BMI1 BMI2 Mean 22.2703 22.2969 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6145 BMI2 0.4330 0.6145 Function value of this group: 1151.3778 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4330 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1815 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0001 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6580 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4261 Vector of OBSERVED means BMI1 BMI2 Mean 22.2613 22.2181 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6145 BMI2 0.2165 0.6145 Function value of this group: 652.4518 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4330 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1815 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.4330 0.0000 0.1815 0.0000 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.7046 0.0000 0.2954 0.0000 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6145 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0001 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6580 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4261 Your model has 8 estimated parameters and 1767 Observed statistics -2 times log-likelihood of data >>> 3756.552 Degrees of freedom >>>>>>>>>>>>>>>> 1759 Akaike's Information Criterion >>>> 238.552 Bayesian Information Criterion >>>> -4118.006 Sample size Adjusted BIC >>>> -1324.830 Deviance Information Criterion >>>> -2501.593 This problem used 11.0% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 6.05 Execution 0: 0: 0:-5.14 TOTAL 0: 0: 0: 0.91 Total number of warnings issued: 0 ______________________________________________________________________________ Multiple fit option in effect. The following MX script lines have been read: DROP W 1 1 1 W 5 1 1 OPTION ISSAT END Summary of VL file data for group 2 BMI1 BMI2 Code 1.0000 2.0000 Number 261.0000 262.0000 Mean 21.6211 21.6262 Variance 0.5863 0.5659 Minimum 19.2638 19.7719 Maximum 23.6588 23.8362 Summary of VL file data for group 3 BMI1 BMI2 Code 1.0000 2.0000 Number 191.0000 196.0000 Mean 21.7920 21.7580 Variance 0.7048 0.7980 Minimum 19.6939 19.8223 Maximum 24.4494 26.0152 Summary of VL file data for group 6 BMI1 BMI2 Code 1.0000 2.0000 Number 291.0000 283.0000 Mean 22.2703 22.2969 Variance 0.5473 0.6556 Minimum 20.0883 19.9574 Maximum 24.0782 24.9730 Summary of VL file data for group 7 BMI1 BMI2 Code 1.0000 2.0000 Number 143.0000 140.0000 Mean 22.2613 22.2181 Variance 0.6646 0.5932 Minimum 19.7902 20.6277 Maximum 24.5942 24.3487 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 Mx starting optimization; number of parameters = 6 MX PARAMETER ESTIMATES GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.5413 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1419 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.7357 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3766 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.5413 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1419 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.7357 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3766 Vector of OBSERVED means BMI1 BMI2 Mean 21.6211 21.6262 Vector of EXPECTED means BMI1 BMI2 Mean 21.6915 21.6915 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6831 BMI2 0.5413 0.6831 Function value of this group: 979.9879 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.5413 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1419 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.7357 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3766 Vector of OBSERVED means BMI1 BMI2 Mean 21.7920 21.7580 Vector of EXPECTED means BMI1 BMI2 Mean 21.6915 21.6915 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6831 BMI2 0.2706 0.6831 Function value of this group: 976.2120 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.5413 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1419 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.5413 0.0000 0.1419 0.0000 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.7924 0.0000 0.2076 0.0000 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6831 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.7357 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3766 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4330 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1815 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6580 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4261 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4330 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1815 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6580 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4261 Vector of OBSERVED means BMI1 BMI2 Mean 22.2703 22.2969 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6145 BMI2 0.4330 0.6145 Function value of this group: 1151.3778 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4330 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1815 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6580 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4261 Vector of OBSERVED means BMI1 BMI2 Mean 22.2613 22.2181 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6145 BMI2 0.2165 0.6145 Function value of this group: 652.4518 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4330 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1815 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.4330 0.0000 0.1815 0.0000 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.7046 0.0000 0.2954 0.0000 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6145 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6580 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4261 Your model has 6 estimated parameters and 1767 Observed statistics -2 times log-likelihood of data >>> 3760.030 Degrees of freedom >>>>>>>>>>>>>>>> 1761 Akaike's Information Criterion >>>> 238.030 Bayesian Information Criterion >>>> -4123.085 Sample size Adjusted BIC >>>> -1326.733 Deviance Information Criterion >>>> -2504.834 This problem used 11.0% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.00 Execution 0: 0: 0: 0.10 TOTAL 0: 0: 0: 0.10 Total number of warnings issued: 0 ______________________________________________________________________________ Multiple fit option in effect. The following MX script lines have been read: SAVE AE_COHORT.MXS EQ X 1 1 1 X 5 1 1 END Summary of VL file data for group 2 BMI1 BMI2 Code 1.0000 2.0000 Number 261.0000 262.0000 Mean 21.6211 21.6262 Variance 0.5863 0.5659 Minimum 19.2638 19.7719 Maximum 23.6588 23.8362 Summary of VL file data for group 3 BMI1 BMI2 Code 1.0000 2.0000 Number 191.0000 196.0000 Mean 21.7920 21.7580 Variance 0.7048 0.7980 Minimum 19.6939 19.8223 Maximum 24.4494 26.0152 Summary of VL file data for group 6 BMI1 BMI2 Code 1.0000 2.0000 Number 291.0000 283.0000 Mean 22.2703 22.2969 Variance 0.5473 0.6556 Minimum 20.0883 19.9574 Maximum 24.0782 24.9730 Summary of VL file data for group 7 BMI1 BMI2 Code 1.0000 2.0000 Number 143.0000 140.0000 Mean 22.2613 22.2181 Variance 0.6646 0.5932 Minimum 19.7902 20.6277 Maximum 24.5942 24.3487 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 6 Mx starting optimization; number of parameters = 5 MX PARAMETER ESTIMATES GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4894 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1486 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6996 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3855 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4894 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1486 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6996 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3855 Vector of OBSERVED means BMI1 BMI2 Mean 21.6211 21.6262 Vector of EXPECTED means BMI1 BMI2 Mean 21.6915 21.6915 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6380 BMI2 0.4894 0.6380 Function value of this group: 977.9411 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4894 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1486 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6996 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3855 Vector of OBSERVED means BMI1 BMI2 Mean 21.7920 21.7580 Vector of EXPECTED means BMI1 BMI2 Mean 21.6915 21.6915 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6380 BMI2 0.2447 0.6380 Function value of this group: 980.1239 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4894 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1486 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.4894 0.0000 0.1486 0.0000 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.7671 0.0000 0.2329 0.0000 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6380 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6996 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.3855 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4894 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1753 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6996 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4187 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4894 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1753 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6996 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4187 Vector of OBSERVED means BMI1 BMI2 Mean 22.2703 22.2969 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6648 BMI2 0.4894 0.6648 Function value of this group: 1153.2882 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4894 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1753 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6996 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4187 Vector of OBSERVED means BMI1 BMI2 Mean 22.2613 22.2181 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6648 BMI2 0.2447 0.6648 Function value of this group: 652.7698 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4894 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1753 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.4894 0.0000 0.1753 0.0000 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.7362 0.0000 0.2638 0.0000 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6648 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6996 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4187 Your model has 5 estimated parameters and 1767 Observed statistics -2 times log-likelihood of data >>> 3764.123 Degrees of freedom >>>>>>>>>>>>>>>> 1762 Akaike's Information Criterion >>>> 240.123 Bayesian Information Criterion >>>> -4124.447 Sample size Adjusted BIC >>>> -1326.508 Deviance Information Criterion >>>> -2505.278 Saturated model fit* >>>>>>>>>>> 3760.030 Saturated model df* >>>>>>>>>>> 1761 Difference Chi-squared >>>>>>>> 4.093 Difference d.f. >>>>>>>>>>>>>>> 1 Probability >>>>>>>>>>>>>>>>>>>> 0.043 Akaike's Information Criterion > 2.093 * Saturated model statistic computed earlier in this job This problem used 11.0% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0:10.26 Execution 0: 0: 0:***** TOTAL 0: 0: 0: 0.08 Total number of warnings issued: 0 ______________________________________________________________________________ Multiple fit option in effect. The following MX script lines have been read: GET AE_COHORT.MXS Note: 441972 binary records read EQ Z 1 1 1 Z 5 1 1 END Summary of VL file data for group 2 BMI1 BMI2 Code 1.0000 2.0000 Number 261.0000 262.0000 Mean 21.6211 21.6262 Variance 0.5863 0.5659 Minimum 19.2638 19.7719 Maximum 23.6588 23.8362 Summary of VL file data for group 3 BMI1 BMI2 Code 1.0000 2.0000 Number 191.0000 196.0000 Mean 21.7920 21.7580 Variance 0.7048 0.7980 Minimum 19.6939 19.8223 Maximum 24.4494 26.0152 Summary of VL file data for group 6 BMI1 BMI2 Code 1.0000 2.0000 Number 291.0000 283.0000 Mean 22.2703 22.2969 Variance 0.5473 0.6556 Minimum 20.0883 19.9574 Maximum 24.0782 24.9730 Summary of VL file data for group 7 BMI1 BMI2 Code 1.0000 2.0000 Number 143.0000 140.0000 Mean 22.2613 22.2181 Variance 0.6646 0.5932 Minimum 19.7902 20.6277 Maximum 24.5942 24.3487 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 5 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 Mx starting optimization; number of parameters = 5 MX PARAMETER ESTIMATES GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.5200 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1635 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.7211 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4044 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.5200 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1635 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.7211 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4044 Vector of OBSERVED means BMI1 BMI2 Mean 21.6211 21.6262 Vector of EXPECTED means BMI1 BMI2 Mean 21.6915 21.6915 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6835 BMI2 0.5200 0.6835 Function value of this group: 983.3357 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.5200 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1635 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.7211 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4044 Vector of OBSERVED means BMI1 BMI2 Mean 21.7920 21.7580 Vector of EXPECTED means BMI1 BMI2 Mean 21.6915 21.6915 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6835 BMI2 0.2600 0.6835 Function value of this group: 975.1772 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.5200 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1635 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6915 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.5200 0.0000 0.1635 0.0000 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.7608 0.0000 0.2392 0.0000 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6835 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.7211 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4044 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4470 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1635 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6685 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4044 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4470 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1635 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6685 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4044 Vector of OBSERVED means BMI1 BMI2 Mean 22.2703 22.2969 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6105 BMI2 0.4470 0.6105 Function value of this group: 1152.9716 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4470 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1635 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6685 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4044 Vector of OBSERVED means BMI1 BMI2 Mean 22.2613 22.2181 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6105 BMI2 0.2235 0.6105 Function value of this group: 652.4987 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4470 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1635 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.4470 0.0000 0.1635 0.0000 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.7322 0.0000 0.2678 0.0000 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6105 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN -0.6685 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4044 Your model has 5 estimated parameters and 1767 Observed statistics -2 times log-likelihood of data >>> 3763.983 Degrees of freedom >>>>>>>>>>>>>>>> 1762 Akaike's Information Criterion >>>> 239.983 Bayesian Information Criterion >>>> -4124.517 Sample size Adjusted BIC >>>> -1326.577 Deviance Information Criterion >>>> -2505.347 Saturated model fit* >>>>>>>>>>> 3760.030 Saturated model df* >>>>>>>>>>> 1761 Difference Chi-squared >>>>>>>> 3.954 Difference d.f. >>>>>>>>>>>>>>> 1 Probability >>>>>>>>>>>>>>>>>>>> 0.047 Akaike's Information Criterion > 1.954 * Saturated model statistic computed earlier in this job !@machine; VALUE 2 "ExpCov" 9 2 2 0 4 0.6834925258601522 0.5199847067592125 0.5199847067592125 0.6834925258601522 ; This problem used 11.0% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0:10.90 Execution 0: 0: 0:***** TOTAL 0: 0: 0: 0.06 Total number of warnings issued: 0 ______________________________________________________________________________ Multiple fit option in effect. The following MX script lines have been read: GET AE_COHORT.MXS Note: 441972 binary records read EQ X 1 1 1 X 5 1 1 EQ Z 1 1 1 Z 5 1 1 END Summary of VL file data for group 2 BMI1 BMI2 Code 1.0000 2.0000 Number 261.0000 262.0000 Mean 21.6211 21.6262 Variance 0.5863 0.5659 Minimum 19.2638 19.7719 Maximum 23.6588 23.8362 Summary of VL file data for group 3 BMI1 BMI2 Code 1.0000 2.0000 Number 191.0000 196.0000 Mean 21.7920 21.7580 Variance 0.7048 0.7980 Minimum 19.6939 19.8223 Maximum 24.4494 26.0152 Summary of VL file data for group 6 BMI1 BMI2 Code 1.0000 2.0000 Number 291.0000 283.0000 Mean 22.2703 22.2969 Variance 0.5473 0.6556 Minimum 20.0883 19.9574 Maximum 24.0782 24.9730 Summary of VL file data for group 7 BMI1 BMI2 Code 1.0000 2.0000 Number 143.0000 140.0000 Mean 22.2613 22.2181 Variance 0.6646 0.5932 Minimum 19.7902 20.6277 Maximum 24.5942 24.3487 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 4 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX C This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 1 by 1 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 M This is a FULL matrix of order 1 by 1 1 1 8 MATRIX P This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX S This is a computed FULL matrix of order 1 by 4 It has no free parameters specified MATRIX V This is a computed FULL matrix of order 1 by 1 It has no free parameters specified MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 1 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 2 Mx starting optimization; number of parameters = 4 MX PARAMETER ESTIMATES GROUP NUMBER: 1 Title G1: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4844 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1640 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6914 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6960 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4049 GROUP NUMBER: 2 Title G2: MZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4844 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1640 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6914 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6960 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4049 Vector of OBSERVED means BMI1 BMI2 Mean 21.6211 21.6262 Vector of EXPECTED means BMI1 BMI2 Mean 21.6914 21.6914 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6484 BMI2 0.4844 0.6484 Function value of this group: 981.4255 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 Title G3: DZ data younger cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4844 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1640 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6914 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6960 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4049 Vector of OBSERVED means BMI1 BMI2 Mean 21.7920 21.7580 Vector of EXPECTED means BMI1 BMI2 Mean 21.6914 21.6914 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6484 BMI2 0.2422 0.6484 Function value of this group: 978.1423 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 4 Title G4: Standardization young MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4844 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1640 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 21.6914 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.4844 0.0000 0.1640 0.0000 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.7471 0.0000 0.2529 0.0000 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6484 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6960 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4049 GROUP NUMBER: 5 Title G5: Model Parameters MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4844 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1640 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6960 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4049 GROUP NUMBER: 6 Title G6: MZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4844 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1640 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6960 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4049 Vector of OBSERVED means BMI1 BMI2 Mean 22.2703 22.2969 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6484 BMI2 0.4844 0.6484 Function value of this group: 1154.0371 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 7 Title G7: DZ data older cohort MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4844 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1640 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6960 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4049 Vector of OBSERVED means BMI1 BMI2 Mean 22.2613 22.2181 Vector of EXPECTED means BMI1 BMI2 Mean 22.2685 22.2685 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX BMI1 BMI2 BMI1 0.6484 BMI2 0.2422 0.6484 Function value of this group: 652.4745 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 8 Title G8: Standardization old MATRIX A This is a computed FULL matrix of order 1 by 1 [=X*X'] 1 1 0.4844 MATRIX C This is a computed FULL matrix of order 1 by 1 [=Y*Y'] 1 1 0.0000 MATRIX D This is a computed FULL matrix of order 1 by 1 [=W*W'] 1 1 0.0000 MATRIX E This is a computed FULL matrix of order 1 by 1 [=Z*Z'] 1 1 0.1640 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX M This is a FULL matrix of order 1 by 1 1 1 22.2685 MATRIX P This is a computed FULL matrix of order 1 by 4 [=A|C|E|D] 1 2 3 4 1 0.4844 0.0000 0.1640 0.0000 MATRIX Q This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX S This is a computed FULL matrix of order 1 by 4 [=P@V~] 1 2 3 4 1 0.7471 0.0000 0.2529 0.0000 MATRIX V This is a computed FULL matrix of order 1 by 1 [=A+C+E+D] 1 1 0.6484 MATRIX W This is a LOWER TRIANGULAR matrix of order 1 by 1 1 DOM_GEN 0.0000 MATRIX X This is a LOWER TRIANGULAR matrix of order 1 by 1 1 ADD_GEN 0.6960 MATRIX Y This is a LOWER TRIANGULAR matrix of order 1 by 1 1 COMM_ENV 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 1 by 1 1 SPEC_ENV 0.4049 Your model has 4 estimated parameters and 1767 Observed statistics -2 times log-likelihood of data >>> 3766.079 Degrees of freedom >>>>>>>>>>>>>>>> 1763 Akaike's Information Criterion >>>> 240.079 Bayesian Information Criterion >>>> -4126.878 Sample size Adjusted BIC >>>> -1327.350 Deviance Information Criterion >>>> -2506.789 Saturated model fit* >>>>>>>>>>> 3760.030 Saturated model df* >>>>>>>>>>> 1761 Difference Chi-squared >>>>>>>> 6.050 Difference d.f. >>>>>>>>>>>>>>> 2 Probability >>>>>>>>>>>>>>>>>>>> 0.049 Akaike's Information Criterion > 2.050 * Saturated model statistic computed earlier in this job This problem used 11.0% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0:10.80 Execution 0: 0: 0:***** TOTAL 0: 0: 0: 0.06 Total number of warnings issued: 0 ______________________________________________________________________________