Differences between revisions 1 and 2
Revision 1 as of 2021-10-01 15:05:46
Size: 918
Comment:
Revision 2 as of 2021-10-01 15:06:09
Size: 917
Comment:
Deletions are marked like this. Additions are marked like this.
Line 13: Line 13:
One method of printing that is '''only valid for data transformation commands''' (i.e. `COMPUTE`) is the `DO REPEAT ... END REPEAT` command. One method of looping that is '''only valid for data transformation commands''' (i.e. `COMPUTE`) is the `DO REPEAT ... END REPEAT` command.

SPSS Looping

SPSS offers a couple options for looping, but overall is less flexible as compared to other languages.


DO REPEAT

One method of looping that is only valid for data transformation commands (i.e. COMPUTE) is the DO REPEAT ... END REPEAT command.

As demonstrated below, DO REPEAT can iterate over...

  • arbitrary sequences
  • variable ranges (either existing or new)
  • integer ranges

Multiple sequences/ranges can be iterated over in parallel as long as each has the same number of elements.

do repeat X=A B C D E / Y=new1 to new5 / Z=1 to 5.
  if (original=Z) Y=ltrim(rtrim(X)).
end repeat.

To print the evaluated loop syntax, use END REPEAT PRINT.


Macros

Advanced looping can be handled through macro programming. See SPSS/Macros#Loops for examples.


CategoryRicottone

SPSS/Looping (last edited 2023-06-12 15:43:48 by DominicRicottone)