Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 14
Program 14l
Frequency table in REPORT procedure


*
  Professional SAS Programming Secrets
  Program 14l
  Frequency table in REPORT procedure
*;

proc report data=work.orbital nowd;
   column bodytype n pctn;
   define bodytype / 'Body Type' group;
   define n / 'Count';
   define pctn / '%' format=percent9.3;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections