Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 46
Program
Transposing for trend report


title1 'History';
proc print data=history;
run;
proc transpose data=history out=trend name=variety;
   var regular mushroom sausage classic;
   id date;
   idlabel date;
   format date date5.;
   label variety='Variety';
run;
title1 'Trend';
proc print data=trend label;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page