BookmarkSubscribeRSS Feed
Girmante
Calcite | Level 5

How make program with these models. I am new in programing.

2 REPLIES 2
data_null__
Jade | Level 19

Don't you need another variable?  Is density Y or X?

Girmante
Calcite | Level 5

Density is Y axis,

I'm need iterations with Gauss–Newton model if this is available. I have this example, but can I to use this or similar program with liner model or other models.

proc nlin data=pplasma plots=fit;
parms alpha=2 beta=0.4 gamma=0.00075;
model conc = alpha/(gamma*(alpha-beta))*(exp(-beta*time)-exp(-alpha*time));
bootstrap / bootci; (I don't know why you don't accept those lines)
output out=predictions predicted=prediction stdp=stdp
lclm=lower95 uclm=upper95 residual=residual;
run;
proc print data=predictions;
var conc velocity prediction stdp lower95 upper95 residual;
run;

 

Gauss–Newton

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 467 views
  • 0 likes
  • 2 in conversation