Examples (PRINT command)
Displaying Values for a Selected List of Variables
PRINT / MOHIRED YRHIRED DEPT SALARY NAME.
FREQUENCIES VARIABLES=DEPT.
-
PRINTdisplays values for each variable on the variable list. TheFREQUENCIESprocedure reads the data and causesPRINTto 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.
-
PRINTdisplays values for all user-defined variables in the active dataset. TheEXECUTEcommand executesPRINT.