Online File
Rick Aster: Professional SAS Programming Secrets: Contents
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;