Category:FREQ

From sasCommunity

Jump to: navigation, search

Proc Freq template:

PROC FREQ data   = &Libname..&Memname.
                   options: 
                   compress   begins the next one-way table on the current page 
                   formchar = specifies the outline and cell divider characters 
                              for the cells of the crosstabulation table. 
                   nlevels    displays the number of levels for all TABLES variables 
                   noprint    suppresses all displayed output. 
                   order    = specifies the order for listing variable values. 
                   page 
                   ; 
          tables   &Name.
                 / list missing noprint
             out = Work.Freq; 
          by       variables ; 
          exact    statistic-options < 
                 / computation-options > ; 
          output   
             out = SAS-data-set > options ; 
          test     options ; 
          weight   variable < 
                 / option > ; 

--macro maven == the radical programmer 11:30, 9 May 2008 (EDT)


Personal tools