InterviewSolution
Saved Bookmarks
| 1. |
Name the command used for sorting in SAS programs? |
|
Answer» The PROC SORT command can be used to sort data in SAS. The command can be used for multiple VARIABLES within a program. It creates a new DATASET with sorting and keeps the original dataset unchanged. Syntax: PROC SORT DATA=original OUT=SORTED; BY variable_name;Here,
|
|