LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (February 2006, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Fri, 17 Feb 2006 21:37:36 -0800
Reply-To:   David L Cassell <davidlcassell@MSN.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   David L Cassell <davidlcassell@MSN.COM>
Subject:   Re: How to compare three numbers with the same observation?
In-Reply-To:   <200602180252.k1I2bg5v022428@mailgw.cc.uga.edu>
Content-Type:   text/plain; format=flowed

nine.angelina@GMAIL.COM wrote back: >Sorry, Maybe I didn't express my quenstion clearly. >I don't really want to show the time order. >I just want to know which combination of the time order the observation >belongs to.Becuase the three numbers of the first observation is >20050101<20050123<20050126, that means time1 is earlier than time2 and >time2 is earlier than time3, the combination is 1 in the Number variable. >And those of the second observation is 20050707<20050808<20060606, that >means time1 is earlier than time3 and time3 is earlier than time2, the >combination is 2 in the Number variable. I think a direct method. I don't >know whether it works because I haven't reinstalled SAS in my computer in >my home.

Here's a really simple way to do it and get six unique levels. You can fiddle the Boolean components to get the numbering in any order you want:

data next; set YourData; compare = 1 + (temp1>temp2) + (temp1>temp3) + 3*(temp2>temp3); run;

Of course, this approach is not extensible.

So.. why do you want this kind of comparison?

HTH, David -- David L. Cassell mathematical statistician Design Pathways 3115 NW Norwood Pl. Corvallis OR 97330

_________________________________________________________________ On the road to retirement? Check out MSN Life Events for advice on how to get there! http://lifeevents.msn.com/category.aspx?cid=Retirement


Back to: Top of message | Previous page | Main SAS-L page