home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / bit / listserv / sasl / 3455 < prev    next >
Encoding:
Text File  |  1992-07-28  |  2.1 KB  |  61 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!ESPRESSO.BOEING.COM!OLDENKMP
  3. Message-ID: <9207282018.AA28139@espresso.bcs.eca>
  4. Newsgroups: bit.listserv.sas-l
  5. Date:         Tue, 28 Jul 1992 13:18:35 PDT
  6. Reply-To:     "P. Oldenkamp 5-4481" <oldenkmp@ESPRESSO.BOEING.COM>
  7. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  8. From:         "P. Oldenkamp 5-4481" <oldenkmp@ESPRESSO.BOEING.COM>
  9. Subject:      Re: writing variable names to external file
  10. Comments: To: SAS-L@uga.cc.uga.edu, SWICKHAM%DARTCMS1.BITNET@uga.cc.uga.edu
  11. Lines: 48
  12.  
  13. ----------------------------------------------------------------------
  14. CONTENT:  Reply
  15. REL/PLTF: N/A
  16. E-ADDR:   oldenkmp@ESPRESSO.boeing.com
  17. NAME:     Paul OldenKamp
  18. PHONE:    206-865-4481
  19. ----------------------------------------------------------------------
  20. Steve Wickham asked,
  21.  
  22. >   This ought to be a simple one, but it's got me stumped.  I have a transposed
  23. > data set that I'd like to write to an external file, with variable names
  24. > at the top of columns.  Put 'var1' 'var2', etc. where var1 is the 1st variable
  25. > name, etc. won't work because I don't exactly know the names of the variables
  26. > due to the transpose.  The transposed variables all have the same prefix, but
  27. > the also have a number that ranges between 0 - 99, but not consecutively.
  28. > Confused? An example:
  29. > DATE RIVER SITE ORDER1 ORDER3 ORDER5 ORDER17 ORDER9 ORDER85
  30. > I need to output these column headings along with their values without
  31. > knowing their names beforehand.  Any ideas?
  32.  
  33. Try PROC PRINT:
  34.  
  35. options
  36.  nodate
  37.  nonumber
  38.  ;
  39. title1 ' ';
  40.  
  41. proc printto
  42.  print='~/external.file';
  43.  ;
  44. run;
  45.  
  46. proc print
  47.  data=sasuser.class
  48.  ;
  49. run;
  50.  
  51. ----------------------------------------------------------------------
  52.            //  Paul OldenKamp
  53.           //   BCS Research and Technology          .
  54.          //    P. O. Box 24346, MS 7L-21            |\
  55.         //     Seattle, WA   98124-0346             | \____oo_
  56.        //==========================================((__|  /___>
  57.       //       ___ ___ ___ ___     __                  | //
  58.      //       /__//  //__  /  /\ //  _                 |//
  59.     //       /__//__//__ _/_ /  //__/                  ''
  60.        //
  61.