Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 10
Program 10b
Design group data


Input data: Text data file 10a

*
  Professional SAS Programming Secrets
  Program 10b
  Design group data
*;
filename design "design.txt";

data work.design;
   length color shape $ 8;
   infile design dsd;
   input color shape size rate1 rate2;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections