Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 13
Program 13c
Annotate data set from data step statements

Compare Program 13d


*
  Professional SAS Programming Secrets
  Program 13c
  Annotate data set from data step statements
*;

data work.triangle;
   length function color $ 8;
   line = 1;
   size = 3;
   x = 34;
   y = 7;
   function = "MOVE";
   output;
   x = 3;
   y = 7;
   function = "DRAW";
   color = "RED";
   output;
   x = 3;
   y = 48;
   function = "DRAW";
   color = "RED";
   output;
   x = 34;
   y = 7;
   function = "DRAW";
   color = "RED";
   output;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections