Illustration of ODS Graphics
/*--------------------------------------------------------------
SAS Sample Library
Name: modex20.sas
Description: Example program from SAS/ETS User's Guide,
The MODEL Procedure
Title: Illustration of ODS Graphics
Product: SAS/ETS Software
Keys: nonlinear simultaneous equation models
PROC: MODEL
Notes:
--------------------------------------------------------------*/
ods graphics on;
title1 'Example of Graphical Output from PROC MODEL';
proc model data=sashelp.citimon;
lhur = 1/(a * ip + b) + c;
fit lhur;
id date;
run;
title1 'Unpacked Graphical Output from PROC MODEL';
proc model data=sashelp.citimon plots(unpack);
lhur = 1/(a * ip + b) + c;
fit lhur;
id date;
run;