Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 7
Program 7f
List input

Input data: Text data file 7e


*
  Professional SAS Programming Secrets
  Program 7f
  List input
*;

data work.tv;
   length band $ 14;
   infile tvch;
   input tvchannel video_freq audio_freq band;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections