Create data set Two. Data set Two populates the data set with the formats supplied by PROC FORMAT.
data two (keep=model color luxury options perform); length model color luxury options perform $ 20; set one; model=put(a,cars.); color=put(b,colors.); luxury=put(c,luxury.); options=put(d,opts.); perform=put(e,perform.); run;