4.0 LIST Command The B34S LIST command allows listing of up to 10 series on a line printer and up to 99 series off-line using various formats. The VAR sentence is the only required sentence. The form of the command is: B34SEXEC LIST options parms$ VAR variable list$ B34SEEND$ Options for LIST command. MANYDIGITS Sets to list with more accuracy. A max of 7 series are listed per line. If this option is not set, up to 10 series can be listed per line. Option only used for printed output. PRINTOBS Prints OBS number instead of date when variable is a time series. Parameters for LIST command. IBEGIN=n1 Sets the beginning observation. Defaults to 1. IEND=n2 Sets end observation. Defaults to number of obs in current dataset. OUTPUT=key The default is LINEPRINTER. Other options include: PUNCHBYOBS - Punch on IUNIT by observations. PUNCHBYVAR - Punch on IUNIT by variables. PUNCHSCA - Punch in SCA data file format. PUNCHSCAP - Punch in SCA procedure format using SCANAME. PUNCHTSP - Punch in TSP format. PUNCHESP - Punch in ESP format. PUNCHQP - Punch in Quatro-Pro 4 Comma & "" Delimeter IMPORT format PUNCHEXCEL - Same as PUNCHQP except no " " Note: QP version 4 does not read more than 15 series correctly. The same is TRUE for Excel. SCANAME=name Sets name for SCA procedure. Default is B34SDATA. This parameter is only useful if OUTPUT=PUNCHSCAP. The supplied name must be less that or equal to 8 characters. FORMAT=i i=0 Data punched in format (5(2X,E14.8)). i=1 Data punched in format (10Z8). i=2 Data punched in format (5Z16). i=3 Data punched in format (20A4). i=4 Data punched in format (10A8). i=5 Data in double precision unformatted. i=6 Data punched in format (3E24.16). i=7 Data punched in 15E16.8 for REAL*4. i=8 Data punched in 15D16.8 for REAL*8. Note: The FORMAT parameter is only used if OUTPUT is not LINEPRINTER. FORMAT=0 is the default. I=7 punches in scientific using E such as 1.0E+11. I=8 punches in scientific using D such as 1.0D+11. I=7 loses some accuracy but can be used in programs that will not read scientific using D such as Quatro Pro 4. If character data is in the file, only FORMAT=0 should be used. IUNIT=k Sets output unit for punch. Default = 7. Must be set 7 or some value other than 1-15. This option only useful if OUTPUT keyword is not LINEPRINTER. The keyword UNIT can be used in place of IUNIT. COMMENT(' ') Sets Heading. Up to 72 characters can be supplied. VAR sentence. The VAR sentence specifies the variables to use. If the VAR sentence is not used, all series but the constant are listed. Example of LIST command for output to line printer. B34SEXEC LIST$ VAR X1 X2 X3 X4 Z Q $ B34SEEND$ Example of LIST command for output to a file on unit 37. B34SEXEC LIST OUTPUT=PUNCHBYOBS IUNIT=37$ VAR X1 X2 X3 X4 X4 Z Q PP $ B34SEEND $