-
Notifications
You must be signed in to change notification settings - Fork 1
/
nis1model3.htm
8695 lines (8045 loc) · 349 KB
/
nis1model3.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
a:link
{
color: black;
text-decoration: none;
}
a[name]:hover
{
text-decoration: none;
}
a:hover
{
color: blue;
text-decoration: underline;
}
a:visited
{
color: black;
text-decoration: none;
}
.heading
{
color: black;
font-weight: bold;
font-size: 110%;
}
.heading:hover
{
color: black;
font-weight: bold;
font-size: 110%;
text-decoration: none;
}
</style>
<body style="font-family:'Courier New'; font-size:14px;">
<p class="heading">
Mplus VERSION 8.6<br />
MUTHEN & MUTHEN<br />
05/11/2021 4:01 PM<br />
</p>
<p class='heading'>OUTPUT SECTIONS</p>
<ul>
<li><a href='#input'>Input Instructions</a></li>
<li><a href='#inputmessages'>Input Warnings And Errors</a></li>
<li><a href='#summary_analysis'>Summary Of Analysis</a></li>
<li><a href='#summary_data'>Summary Of Data For The First Replication</a></li>
<li><a href='#summary_missing_patterns'>Summary Of Missing Data Patterns For The First Replication</a></li>
<li><a href='#covariance_coverage'>Covariance Coverage Of Data For The First Replication</a></li>
<li><a href='#model_fit'>Model Fit Information</a></li>
<li><a href='#model_results'>Model Results</a></li>
<li><a href='#standardized_results'>Standardized Model Results</a></li>
<li><a href='#rsquare'>R-square</a></li>
<li><a href='#tech1_output'>Technical 1 Output</a></li>
<li><a href='#tech8_output'>Technical 8 Output</a></li>
</ul>
<pre>
<a name='input' class='heading'>INPUT INSTRUCTIONS</a>
TITLE: Analyses of individual data
5000 iterations
Model3 bivariate
Standardized variables
DATA: FILE = IDlist.dat;
TYPE = MONTECARLO;
VARIABLE:
NAMES = ID prepost TimeHours U2P PA NA PEx NEx
pa_pre na_pre U2P_pre PEx_pre NEx_pre
pa_post na_post U2P_post PEx_post NEx_post
ham_pre ham_post group;
USEVAR = na_pre ue_pre;
LAGGED = na_pre(1) ue_pre(1);
TINTERVAL = TimeHours(1);
MISSING = ALL(-999);
DEFINE: ue_pre = -1*U2P_pre;
STANDARDIZE(na_pre);
STANDARDIZE(ue_pre);
ANALYSIS: ESTIMATOR = BAYES;
PROC = 2;
BITER = (5000);
BSEED = 2697;
THIN = 10;
MODEL:
na_pre ON na_pre&1;
na_pre ON ue_pre;
ue_pre ON ue_pre&1;
ue_pre ON na_pre&1;
OUTPUT: TECH1 TECH8 STDYX;
SAVEDATA:
RESULTS = parestM3.dat;
<a name='inputmessages' class='heading'></a>
INPUT READING TERMINATED NORMALLY
Analyses of individual data
5000 iterations
Model3 bivariate
Standardized variables
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 307
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 306
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 310
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 425
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 305
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 462
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 306
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 312
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 267
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 311
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 310
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 315
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 307
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 453
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 296
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 356
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 305
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 311
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 261
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 242
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 307
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 314
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 311
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 307
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 285
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 307
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 311
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 261
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 306
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 306
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 287
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 326
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 307
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 369
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 311
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 285
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 393
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 310
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 306
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 311
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 299
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 319
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 307
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 308
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 329
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
*** WARNING
Data set contains cases with missing on all variables. Cases that appeared before the first
case with observed data and that appeared after the last case with observed data were not
included in the analysis. Number of deleted cases: 309
<a name='summary_analysis' class='heading'>SUMMARY OF ANALYSIS</a>
Number of groups 1
Average number of observations 135
Number of replications
Requested 129
Completed 129
Number of dependent variables 2
Number of independent variables 2
Number of continuous latent variables 0
Observed dependent variables
Continuous
NA_PRE UE_PRE
Observed independent variables
NA_PRE&1 UE_PRE&1
Estimator BAYES
Specifications for Bayesian Estimation
Point estimate MEDIAN
Number of Markov chain Monte Carlo (MCMC) chains 2
Random seed for the first chain 2697
Starting value information UNPERTURBED
Algorithm used for Markov chain Monte Carlo GIBBS(PX1)
Convergence criterion 0.500D-01
Maximum number of iterations 50000
K-th iteration used for thinning 10
Input data file(s)
Multiple data files from
IDlist.dat
Input data format FREE
<a name='summary_data' class='heading'>SUMMARY OF DATA FOR THE FIRST REPLICATION</a>
<a name='summary_missing_patterns' class='heading'>SUMMARY OF MISSING DATA PATTERNS FOR THE FIRST REPLICATION</a>
Number of missing data patterns 4
MISSING DATA PATTERNS (x = not missing)
1 2 3 4
NA_PRE x x
UE_PRE x x
NA_PRE&1 x x
UE_PRE&1 x x
MISSING DATA PATTERN FREQUENCIES
Pattern Frequency Pattern Frequency Pattern Frequency
1 16 3 30
2 30 4 58
<a name='covariance_coverage' class='heading'>COVARIANCE COVERAGE OF DATA FOR THE FIRST REPLICATION</a>
Minimum covariance coverage value 0.100
PROPORTION OF DATA PRESENT
Covariance Coverage
NA_PRE UE_PRE
________ ________
NA_PRE 0.343
UE_PRE 0.343 0.343
<a name='model_fit' class='heading'>MODEL FIT INFORMATION</a>
Number of Free Parameters 8
Information Criteria
Deviance (DIC)
Mean 883.708
Std Dev 118.681
Number of successful computations 129
Proportions Percentiles
Expected Observed Expected Observed
0.990 0.992 607.619 330.268
0.980 0.984 639.972 636.455
0.950 0.984 688.489 738.407
0.900 0.969 731.606 774.799
0.800 0.899 783.826 833.665
0.700 0.829 821.471 853.816
0.500 0.504 883.708 882.371
0.300 0.116 945.945 903.882
0.200 0.047 983.590 923.397
0.100 0.039 1035.810 946.941
0.050 0.039 1078.927 958.500
0.020 0.031 1127.444 1197.231
0.010 0.031 1159.797 1207.067
Estimated Number of Parameters (pD)
Mean 175.108
Std Dev 31.310
Number of successful computations 129
Proportions Percentiles
Expected Observed Expected Observed
0.990 0.992 102.271 52.658
0.980 0.992 110.806 116.874
0.950 0.984 123.606 151.893
0.900 0.984 134.981 158.108
0.800 0.984 148.757 160.508
0.700 0.891 158.689 162.409
0.500 0.380 175.108 170.194
0.300 0.085 191.527 177.313
0.200 0.062 201.458 183.331
0.100 0.047 215.235 190.405
0.050 0.039 226.610 208.445
0.020 0.031 239.409 255.607
0.010 0.031 247.944 263.529
<a name='model_results' class='heading'>MODEL RESULTS</a>
ESTIMATES S. E. M. S. E. 95% % Sig
Population Average Std. Dev. Average Cover Coeff
NA_PRE ON
NA_PRE&1 0.000 0.3638 0.2780 0.1762 0.2090 0.504 0.496
UE_PRE 0.000 0.2496 0.1740 0.1547 0.0923 0.620 0.380
UE_PRE ON
UE_PRE&1 0.000 0.0375 0.2321 0.2064 0.0548 0.938 0.062
NA_PRE&1 0.000 0.1007 0.2414 0.2151 0.0680 0.876 0.124
Intercepts
NA_PRE 0.000 -0.0058 0.0225 0.1150 0.0005 1.000 0.000
UE_PRE 0.000 0.0056 0.0372 0.1551 0.0014 1.000 0.000
Residual Variances
NA_PRE 0.500 0.7404 0.2253 0.1927 0.1082 0.442 1.000
UE_PRE 0.500 0.9537 0.1220 0.2494 0.2206 0.163 1.000
<a name='standardized_results' class='heading'>STANDARDIZED MODEL RESULTS</a>
STDYX Standardization
ESTIMATES S. E. % Sig
Average Std. Dev. Average Coeff
NA_PRE ON
NA_PRE&1 0.364 0.278 0.176 0.016
UE_PRE 0.254 0.176 0.150 0.061
UE_PRE ON
UE_PRE&1 0.038 0.232 0.206 0.500
NA_PRE&1 0.101 0.241 0.206 0.062
Intercepts
NA_PRE -0.006 0.021 0.106 56.000
UE_PRE 0.005 0.033 0.140 61.000
Residual Variances
NA_PRE 0.662 0.188 0.123 0.008
UE_PRE 0.838 0.109 0.113 0.008
<a name='rsquare' class='heading'>R-SQUARE</a>
Observed ESTIMATES S. E. % Sig
Variable Average Std. Dev. Average Coeff
NA_PRE 0.338 0.188 0.123 1.000
UE_PRE 0.162 0.109 0.113 1.000
<a name='tech1_output' class='heading'>TECHNICAL 1 OUTPUT</a>
PARAMETER SPECIFICATION
NU
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
0 0 0 0
LAMBDA
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
NA_PRE 0 0 0 0
UE_PRE 0 0 0 0
NA_PRE&1 0 0 0 0
UE_PRE&1 0 0 0 0
THETA
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
NA_PRE 0
UE_PRE 0 0
NA_PRE&1 0 0 0
UE_PRE&1 0 0 0 0
ALPHA
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
1 2 0 0
BETA
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
NA_PRE 0 3 4 0
UE_PRE 0 0 5 6
NA_PRE&1 0 0 0 0
UE_PRE&1 0 0 0 0
PSI
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
NA_PRE 7
UE_PRE 0 8
NA_PRE&1 0 0 0
UE_PRE&1 0 0 0 0
STARTING VALUES
NU
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
0.000 0.000 0.000 0.000
LAMBDA
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
NA_PRE 1.000 0.000 0.000 0.000
UE_PRE 0.000 1.000 0.000 0.000
NA_PRE&1 0.000 0.000 1.000 0.000
UE_PRE&1 0.000 0.000 0.000 1.000
THETA
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
NA_PRE 0.000
UE_PRE 0.000 0.000
NA_PRE&1 0.000 0.000 0.000
UE_PRE&1 0.000 0.000 0.000 0.000
ALPHA
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
0.000 0.000 0.000 0.000
BETA
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
NA_PRE 0.000 0.000 0.000 0.000
UE_PRE 0.000 0.000 0.000 0.000
NA_PRE&1 0.000 0.000 0.000 0.000
UE_PRE&1 0.000 0.000 0.000 0.000
PSI
NA_PRE UE_PRE NA_PRE&1 UE_PRE&1
________ ________ ________ ________
NA_PRE 0.500
UE_PRE 0.000 0.500
NA_PRE&1 0.000 0.000 0.500
UE_PRE&1 0.000 0.000 0.000 0.500
PRIORS FOR ALL PARAMETERS PRIOR MEAN PRIOR VARIANCE PRIOR STD. DEV.
Parameter 1~N(0.000,infinity) 0.0000 infinity infinity
Parameter 2~N(0.000,infinity) 0.0000 infinity infinity
Parameter 3~N(0.000,infinity) 0.0000 infinity infinity
Parameter 4~N(0.000,infinity) 0.0000 infinity infinity
Parameter 5~N(0.000,infinity) 0.0000 infinity infinity
Parameter 6~N(0.000,infinity) 0.0000 infinity infinity
Parameter 7~IG(-1.000,0.000) infinity infinity infinity
Parameter 8~IG(-1.000,0.000) infinity infinity infinity
<a name='tech8_output' class='heading'>TECHNICAL 8 OUTPUT</a>
TECHNICAL 8 OUTPUT FOR BAYES ESTIMATION
CHAIN BSEED
1 2697
2 532599
POTENTIAL PARAMETER WITH
ITERATION SCALE REDUCTION HIGHEST PSR
100 1.024 8
200 1.021 4
300 1.006 2
400 1.010 4
500 1.013 4
600 1.012 3
700 1.004 3
800 1.003 3
900 1.005 3
1000 1.007 3
1100 1.006 3
1200 1.003 3
1300 1.007 3
1400 1.005 3
1500 1.003 3
1600 1.002 3
1700 1.001 3
1800 1.000 1
1900 1.001 3
2000 1.002 1
2100 1.002 1
2200 1.001 1
2300 1.002 1
2400 1.001 1
2500 1.000 1
2600 1.000 1
2700 1.000 5
2800 1.001 2
2900 1.001 2
3000 1.001 7
3100 1.002 7
3200 1.001 7
3300 1.001 7
3400 1.001 7
3500 1.001 7
3600 1.001 5
3700 1.001 5
3800 1.001 5
3900 1.001 5
4000 1.001 5
4100 1.001 5
4200 1.000 5
4300 1.000 5
4400 1.001 5
4500 1.000 5
4600 1.001 5
4700 1.001 5
4800 1.000 5
4900 1.000 5
5000 1.001 5
TECHNICAL 8 OUTPUT FOR BAYES ESTIMATION
CHAIN BSEED
1 2697
2 532599
POTENTIAL PARAMETER WITH
ITERATION SCALE REDUCTION HIGHEST PSR
100 1.058 2
200 1.018 1
300 1.015 1
400 1.001 1
500 1.008 6
600 1.001 4
700 1.002 2
800 1.002 2
900 1.001 2
1000 1.001 4
1100 1.001 8
1200 1.003 4
1300 1.007 4
1400 1.004 4
1500 1.007 4
1600 1.004 4
1700 1.003 4
1800 1.002 3
1900 1.003 3
2000 1.004 3
2100 1.001 3
2200 1.002 4
2300 1.001 4
2400 1.001 3
2500 1.000 6