Create a data set named CLASS. Use the CLSFMT format on variable Z. Create labels for variables, X, Y, and Z.


data class;
   format z clsfmt.;
   label x='ID NUMBER'
      y='AGE'
      z='CLASS STATUS';
   input x y z;
datalines;
1 20 4
2 18 1
;