Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 59
Program
Summary report from REPORT procedure


proc report data=work.pha nowd spacing=2 headline;
   column amagn n diameter
       ('-  Orbit  -' perihelion aphelion eccentricity) sm_axis;
   define amagn / 'Magnitude' group f=f9. spacing=0;
   define n / 'Count' f=5.;
   define perihelion / 'Perihelion' mean f=f10.3;
   define aphelion / 'Aphelion' mean f=f8.3;
   define diameter / 'Diameter' mean f=f9.3;
   define eccentricity / 'Ecc.' mean f=f6.3;
   define sm_axis / 'Semimajor' 'Axis' mean f=f9.3;
   rbreak after / summarize ol;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page