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. TheFREQUENCIES
procedure reads the data and causesPRINT
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. TheEXECUTE
command executesPRINT
.