Differences between revisions 1 and 2
Revision 1 as of 2023-01-14 04:08:32
Size: 213
Comment:
Revision 2 as of 2023-01-14 04:13:56
Size: 340
Comment:
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
To create higher-level variables, try:

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

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

SAS/Print (last edited 2023-01-14 05:39:38 by DominicRicottone)