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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 520 views
  • 0 likes
  • 2 in conversation