sas

SAS Labels

Remarks#

Labels can be used to describe a variable which helps improve the readability of your outputs. Labels can be permanently created in the DATA step or temporarily created in a PROC step.

Create Permanent Variable Labels in DATA step

data table;
    set table;
    label variable1 = 'label1'
            variable2 = 'label2'
            variable3 = 'label3';
run;

This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow