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

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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