Monday, June 29, 2009

Output a dataset from proc contents!


proc contents data = check
out = check1(keep=name format label length name type varnum);
run;

Many of us use the procedure: proc contents but only few make use of the resulting dataset. The output dataset of proc contents helps the user visualize data items (in the form of a dataset). For example one can see the name, format, label, length, name, type, varnum etc.

No comments:

Post a Comment