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 (November 2007, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 12 Nov 2007 16:07:49 -0500
Reply-To:   Gina Nicolosi <ginanicolosi@HOTMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Gina Nicolosi <ginanicolosi@HOTMAIL.COM>
Subject:   Re: Screens
Comments:   To: SUBSCRIBE SAS-L Anonymous <randistan69@HOTMAIL.COM>

data one; input ID $ Screen; cards; A 0.05 A 0.15 A 0.02 B 0.2 B 0.3 C 0.4 C 0.02 C 0.5 ; proc sort; by ID Screen; run; data two (keep=ID); set one (where=(Screen<=.1)) ; by ID; if first.ID=1; run; data four; merge one (IN=A) two (IN=B); by ID; if A and B; proc print; run;


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