Create the data set One. Create a data set that has five columns. Each column is composed of one to five subcolumns.
data one; do a=1 to 2; do b=1 to 2; do c=1 to 3; do d=1 to 3; do e=1 to 5; output; end; end; end; end; end; run;