What does PROC PRINT display by default?
-
a.PROC PRINT does not create a default report; you must specify the rows and columns to be displayed.
-
PROC PRINT displays all observations and variables in the data set. If you want an additional column for observation numbers, you can request it.
-
PROC PRINT displays columns in the following order: a column for observation numbers, all character variables, and all numeric variables.
-
a.PROC PRINT displays all observations and variables in the data set, a column for observation numbers on the far left, and variables in the order in which they occur in the data set.
PROC PRINT displays all observations and variables in the data set by default. It also includes a column for observation numbers on the far left. The variables appear in the order they occur in the data set, not in any type-based order. Option B is incomplete because it omits the observation number column, and Option C incorrectly states the ordering of variables.