Chapter Contents |
Previous |
Next |
The TRANSPOSE Procedure |
Procedure features: |
|
Program |
options nodate pageno=1 linesize=64 pagesize=40;
proc transpose data=stocks out=close let; |
by company; |
id date; run; |
proc print data=close noobs; title 'Closing Prices for Horizon Kites and SkyHi Kites'; run; |
Output |
The output data set, CLOSE | |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.