Hi all,
I'm trying to create a dataset with parameter estimates to use as a source for the different program...
I would like to export the estimates for parameters 49.9999 & 25 as a dataset... but I'm having problems.
Thank you in advance for help.
proc nlin data=sample;
parameters x1=0 x2=0;
model product= x1 * exp (x2*month) ;
run;
proc model data=sample;
parms x1=0 x2=0;
product=x1 * exp (x2*month) ;
fit product;
run;