LABEL
Last changed: 10 February 2021
To give a longer explanation on a variable name we use the label statement. For the data indata1 we could use:
data indata2;
set indata1;
label type= "Type of pressure treatment"
concent= "Concentration of XYZ in mg/l";
run;
The defined labels are used in all outputs from SAS procedures.
Further reading:
https://stats.idre.ucla.edu/sas/modules/labeling/