************************************************************* * Project: SAS FSEDIT program to enter and store * * answers to Rome III Diagnostic Questionnaire * * by * * UNC GI Psychosocial Research * * 720 MLK Jr. Boulevard, Suite 102 * * Chapel Hill, North Carolina 27514 USA * * * * Jobname: c:\Rome3\Rom3data.sas * * * * Purpose: Start data enty session to store Rome III data * * * * Data: c:\Rome3\Rom3Data * * Screen: c:\Rome3\Rom3scrn * * Formats: c:\Rome3\Formats * * Contents: c:\Rome3\Contents.lst * * * * Language: SAS 9.1.3 * * * * Program: Yuming J.B. Hu, PhD * * * * Date run: May 2007 * * * * Revised: * * * *************************************************************; libname rome3 'c:\Rome3'; libname library 'c:\Rome3'; options nodate nonumber ps=52 ls=100; /*** to load screen to enter patients' Rome III data ***/; proc fsedit data=rome3.rom3data screen=library.Rom3scrn; run; /* proc contents data=rome3.rom3data position; run; */; /* proc insight data=rome3.rom3data; run; */;