Examples (PRINT command)

Displaying Values for a Selected List of Variables

PRINT  / MOHIRED YRHIRED DEPT SALARY NAME.
FREQUENCIES VARIABLES=DEPT.
  • PRINT displays values for each variable on the variable list. The FREQUENCIES procedure reads the data and causes PRINT to be executed.
  • All variables are displayed by using their dictionary formats. One blank space separates the values of each variable.

Displaying Values for All User-Defined Variables

PRINT /ALL.
EXECUTE.
  • PRINT displays values for all user-defined variables in the active dataset. The EXECUTE command executes PRINT.