SAS Code to Read in the ASCII ECLS-K 1998-99 Food Security Data File Note: The following SAS code can be found in Appendix B of the ECLS-K 1998-99 Food Security Status File Technical Documentation and User Notes. *read ascii file; data temp; infile 'd:foodsecu\ecls\eclsfood.dat' lrecl=16; *change to identify path and file in your system; input @1 childid $ 8. @9 p2fsraw 2. @11 p2fsscal f4.1 @15 p2fsstat 2.; run; proc freq data=temp; tables p2fsraw p2fsscal p2fsstat; title1 'Run 4: Cases, unweighted'; run;