27.03.2013 Views

SPSS® 12.0 Command Syntax Reference

SPSS® 12.0 Command Syntax Reference

SPSS® 12.0 Command Syntax Reference

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

1432 REREAD<br />

Subcommand Order<br />

Subcommands can be specified in any order.<br />

<strong>Syntax</strong> Rules<br />

• REREAD is available only within an INPUT PROGRAM structure.<br />

• Multiple REREAD commands can be used within the input program. Each must be followed<br />

by an associated DATA LIST command.<br />

Operations<br />

Example<br />

• REREAD causes the next DATA LIST command to reread the most recently processed<br />

record in the specified file.<br />

• When it receives control for a case, REREAD places the pointer back to column 1 for<br />

the current case and begins reading data as defined by the DATA LIST that follows. If the<br />

COLUMN subcommand is specified, the pointer begins reading in the specified column<br />

and uses it as column 1 for data definition.<br />

• REREAD can be used to read part of a record in FIXED format and the remainder in LIST<br />

format. Mixing FIXED and FREE formats yields unpredictable results.<br />

• Multiple REREAD commands specified without an intervening DATA LIST do not have a<br />

cumulative effect. All but the last are ignored.<br />

INPUT PROGRAM.<br />

DATA LIST /PARTNO 1-2 KIND 10-14 (A).<br />

DO IF (KIND EQ ’FORD’).<br />

REREAD.<br />

DATA LIST /PRICE 3-6 (DOLLAR,2) QUANTITY 7-9.<br />

END CASE.<br />

ELSE IF (KIND EQ ’CHEVY’).<br />

REREAD.<br />

DATA LIST /PRICE 15-18 (DOLLAR,2) QUANTITY 19-21.<br />

END CASE.<br />

END IF.<br />

END INPUT PROGRAM.<br />

BEGIN DATA<br />

111295100FORD CHAPMAN AUTO SALES<br />

121199005VW MIDWEST VOLKSWAGEN SALES<br />

11 395025FORD BETTER USED CARS<br />

11 CHEVY 195005 HUFFMAN SALES & SERVICE<br />

11 VW 595020 MIDWEST VOLKSWAGEN SALES<br />

11 CHEVY 295015 SAM’S AUTO REPAIR<br />

12 CHEVY 210 20 LONGFELLOW CHEVROLET<br />

9555032 VW HYDE PARK IMPORTS<br />

END DATA.<br />

LIST.

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!