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.
data table;
set table;
label variable1 = 'label1'
variable2 = 'label2'
variable3 = 'label3';
run;