10 PRINT "=========================================================" 20 PRINT " READLIS: Written by John Graham July 28, 1997" 30 PRINT "This utility reformats LISREL output to be readable by " 40 PRINT "Joe Schafer's Norm program for multiple imputation" 50 PRINT " The program reads in 'parm.dat' and 'se.dat' (these must" 60 PRINT " be specified in the OU statement of your LISREL file)." 70 PRINT " and reads out the user specified results file." 80 PRINT " use the following commands in LISREL to write out these files" 90 PRINT " " 100 PRINT " ou pv=parm.dat sv=se.dat" 110 PRINT " " 120 PRINT " This version of READLIS handles up to 500 parameter estimates 130 PRINT " per group, and up to 10 groups. Change the following dimension 140 PRINT " statements if you need more. 150 PRINT "=========================================================" 160 DIM P(10,500),S(10,500),X$(100),P$(500),S$(500) 170 PRINT "Older versions of LISREL accidently wrote out t-values" 180 PRINT "when standard errors were requested." 190 PRINT "Saying 'Y' to the following question corrects this problem" 200 PRINT " " 210 INPUT "Will you be working with LISREL 8.03";A$ 220 IF A$="y" OR A$="Y" THEN LIS803=1 270 INPUT "Read in what parameter file";PARMF$ 320 INPUT "Read in what standard error file";SEF$ 330 INPUT "Read out what 'results' file";RESULTF$ 340 OPEN "I",#1,PARMF$ 350 INPUT "NUMBER OF PARAMETERS per group";NP 360 INPUT "Number of Groups";NG 370 NROWS=(NP/6) 380 IF INT(NROWS)