Chapter Contents |
Previous |
Next |
The TRANSPOSE Procedure |
Procedure features: |
| ||||
Data set: | SCORE |
Program |
options nodate pageno=1 linesize=80 pagesize=40;
proc transpose data=score out=idlabel name=Test prefix=sn; id studentid; |
idlabel student; run; |
proc print data=idlabel label noobs; title 'Student Test Scores'; run; |
Output |
The output data set, IDLABEL | |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.