Date: Thu, 30 Oct 2008 14:22:50 -0700
Reply-To: Akshaya <akshaya.nathilvar@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Akshaya <akshaya.nathilvar@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: Transpose wide question
Content-Type: text/plain; charset=ISO-8859-1
Mary,
Apparently you want one record/affy_full_hageman_nbr, B
Proc transpose data=<ds> out=<tds>;
by affy_full_hageman_nbr; /* one record/affy_full_hageman_nbr; To
Transpose each BY group */
id snp_name; /* variable whose values become the name of the
transposed variables */
var allele_coding; */ variables to be transposed, which will be
the values of new transposed variables */
Run;
Hope this helps.
Thanks!
Akshaya
|