Saturday, October 27, 2007

Simple ODS

# Trace output
ods trace on / label;

proc mixed;
...
run;

ods trace off;

# use it
ods select none;
ods output LSMeans=lsm;
proc mixed;
...
run;
ods select all;

No comments: