Date: Mon, 22 Jun 2009 07:17:07 -0700
Reply-To: kasa <venkatrkasa@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: kasa <venkatrkasa@GMAIL.COM>
Organization: http://groups.google.com
Subject: please help me do in a simple way instead of using several data
steps
Content-Type: text/plain; charset=ISO-8859-1
Currently i am using several data steps in order to derive needed data
set.
can you please help me to do it efficiently.
data have
subj pulse temp height weight
101 64 36 174 68
102 67 36.4 182 72
data needed
subj newvar newval
101 pulse 64
101 temp 36
101 height 174
101 weight 68
102 pulse 67
102 temp 36.4
102 height 182
102 weight 72
|