The following sections are the raw data and DATA steps for the EXP library.
options ps=40 ls=64 nodate pageno=1;
LIBNAME exp 'library-name';
data exp.results;
set exp.wght(firstobs=1 obs=11 keep=id treat initwt wt3mos
age);
if age>100 then delete;
run;
proc print data=exp.results noobs;
title 'The RESULTS Data Set';
run;
proc datasets library=exp;
data exp.results;
input id treat $ initwt wt3mos ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.