1 The SAS System 09:26 Thursday, April 7, 2011 NOTE: Copyright (c) 2002-2008 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.2 (TS2M2) Licensed to UNIVERSITY OF FLORIDA-T/R, Site 70055083. NOTE: This session is executing on the Linux 2.6.24-28-server (LINUX) platform. You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.02 seconds cpu time 0.01 seconds 1 options ps=54 ls=80; 2 3 data one; 4 input loc 8 trt 16 plant 23-24 dose 28-32 uptake 35-40; 5 ms=loc-1; 6 trt=trt-1; 7 ms_trt=ms*trt; 8 cards; NOTE: The data set WORK.ONE has 84 observations and 7 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 93 ; 94 95 proc nlin; 96 parms a=20 k=-.01 x0=1; 97 model uptake = A*(1-exp(-k*(dose-x0))); 98 run; NOTE: DER.a not initialized or missing. It will be computed automatically. 2 The SAS System 09:26 Thursday, April 7, 2011 NOTE: DER.k not initialized or missing. It will be computed automatically. NOTE: DER.x0 not initialized or missing. It will be computed automatically. NOTE: PROC NLIN grid search time was 0: 0: 0. NOTE: Convergence criterion met. NOTE: The (approximate) Hessian is singular. NOTE: The PROCEDURE NLIN printed pages 1-2. NOTE: PROCEDURE NLIN used (Total process time): real time 0.05 seconds cpu time 0.05 seconds 99 100 quit; NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.08 seconds cpu time 0.07 seconds