***************************************************; *f=My SAS Files\sasmanual\formats\clinical_fmt.sas *; * *; *This file contains some formats for use with *; * the "clinical" SAS data set. *; ***************************************************; options ls=min; proc format; value $gender 'M' = 'Male' 'F' = 'Female'; value $dxcodes '01' = 'Cold' '02' = 'Flu' '03' = 'Fracture' '04' = 'Routine Physical' '05' = 'Heart Problem' '06' = 'Lung Disorder' '07' = 'Abdominal Pain' '08' = 'Laceration' '09' = 'Immunization' '10' = 'Lyme disease' '11' = 'Ear Ache'; value $yesno '0' = 'No' '1' = 'Yes'; run;