SAS Print

Contents

  1. SAS Print
    1. Usage


Usage

To print the first 10 observations, try:

proc print data=LIBREF.TABLE(obs=10);
  var VARLIST;
run;

To create higher-level variables, try:

proc print data=LIBREF.TABLE noobs;
  sum Sales
  sumby Region;
run;


CategoryRicottone