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 (October 2005, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 5 Oct 2005 15:38:50 -0400
Reply-To:     Dave Hapeman <dave.hapeman@NDCHEALTH.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Dave Hapeman <dave.hapeman@NDCHEALTH.COM>
Subject:      Proc Freq Question

In the program below, I am trying to count up how many 0s and 1s are month1 through month6. The output from proc freq only has month6 in it. Is there a simple thing I am missing.

Dave

data test; input pat_typ month1-month6; datalines; 0 1 1 1 1 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 ; run;

proc freq data=test; by pat_typ; tables month1--month6/out=outdset noprint; run;


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