options ps=60 nodate nonumber; data cardenz1; infile 'N:\public_html\structured_data\cardenz1.dat'; input heart a b atp_0 atp_1 - atp_9; title1 'CARDIAC ENZYME DATA'; title2 '-------------------'; * VIEWING THE DATA ; * ---------------- ; proc print; var a b atp_0 atp_1 - atp_9; id heart; title3 'ATP levels during 12-hour period following initial preservation'; title4; run; /*----------------------------------------------- | An analysis can be performed using the | | REPEATED statement on the glm procedure. | -----------------------------------------------*/