Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 10
Program 10s
Changing observation to group


*
  Professional SAS Programming Secrets
  Program 10s
  Changing observation to group
*;

data work.tall (keep=place avtemp month);
   array atx{12} avtemp1-avtemp12;
   set work.wide (keep=place avtemp1-avtemp12);
   do month = lbound(atx) to hbound(atx);
      avtemp = atx{month};
      output;
      end;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections