Type : SASHELP
The script exclusively uses the 'CLASS' table from the standard SASHELP library, which is always available in a SAS environment.
| 1 | PROC PRINT DATA=sashelp.class; |
| 2 | RUN; |
| 1 | PROC TRANSPOSE DATA=sashelp.class out=class_t; |
| 2 | id Name; |
| 3 | *var Height Weight; |
| 4 | RUN; |