* EpiData created two files by exporting . * C:\DATA\DATASETS\tox-samp.rec . * . * 1. C:\DATA\DATASETS\tox-samp.sps . * is the SPSS command file. * 2. C:\DATA\DATASETS\tox-samp.txt . * is an ASCII text file containing the raw data. * * You may modify the commands before running it. * Uncomment (remove the *) the last command (SAVE) if the . * command file should save the data as a SPSS data file. DATA LIST FILE = "A:\tox-samp.txt" RECORDS=1 / ID 1-2 AGE 3-4 SEX 5 MANUF 6(A) DIAG 7 STAGE 8 TOX 9 DOSE 10-13(1) SCR 14-16(1) WEIGHT 17-19. FILE LABEL Subset of TOXICITY data for data entry exercise . VARIABLE LABELS ID "ID" AGE "Age years" SEX "Sex" MANUF "Manufacturer" DIAG "Diagnosis" STAGE "Stage of disease" TOX "Cerebellar toxicity" DOSE "Drug Dose gms/M2" SCR "Serum creatinine mg/dl" WEIGHT "Body weight kilograms". VALUE LABELS SEX 1 "male" 2 "female" /DIAG 1 "leukemia" 2 "lymphoma" /STAGE 1 "relapse" 2 "remission" /TOX 1 "case" 2 "non-case". *********** Uncomment next line to save file ******************. * SAVE OUTFILE="C:\DATA\DATASETS\tox-samp.sav". ***************************************************************.